leon (leonzalion)

Race #56

View Pit Stop page for race #56 by leonzalionGhost race

View profile for leon (leonzalion)

Official speed 131.49 wpm (17.34 seconds elapsed during race)
Race Start September 6, 2022 6:42:57pm UTC
Race Finish September 6, 2022 6:43:14pm UTC
Outcome No win (1 of 1)
Accuracy 97.0%
Points 50.40
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