leon (leonzalion)

Race #7

View Pit Stop page for race #7 by leonzalionGhost race

View profile for leon (leonzalion)

Official speed 143.54 wpm (15.88 seconds elapsed during race)
Race Start May 20, 2021 8:19:24pm UTC
Race Finish May 20, 2021 8:19:40pm UTC
Outcome Win (1 of 2)
Accuracy 99.0%
Points 55.02
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