leon (leonzalion)

Race #46

View Pit Stop page for race #46 by leonzalionGhost race

View profile for leon (leonzalion)

Official speed 118.77 wpm (19.20 seconds elapsed during race)
Race Start August 16, 2021 12:16:54am UTC
Race Finish August 16, 2021 12:17:13am UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 45.53
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