MrBoombastic (mr_boombaastic)

Race #61

View Pit Stop page for race #61 by mr_boombaasticGhost race

View profile for MrBoombastic (mr_boombaastic)

Official speed 60.90 wpm (37.44 seconds elapsed during race)
Race Start July 16, 2021 3:34:42am UTC
Race Finish July 16, 2021 3:35:20am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 23.35
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