MrBoombastic (mr_boombaastic)

Race #73

View Pit Stop page for race #73 by mr_boombaasticGhost race

View profile for MrBoombastic (mr_boombaastic)

Official speed 44.68 wpm (51.03 seconds elapsed during race)
Race Start August 19, 2021 8:41:45am UTC
Race Finish August 19, 2021 8:42:36am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 17.13
Text #10019 (Length: 190 characters)

import string from random import * characters = string.ascii_letters + string.punctuation + string.digits password = "".join(choice(characters) for x in range(randint(8, 16))) print password