TotalledZebra (totalledzebra)

Race #4

View Pit Stop page for race #4 by totalledzebraGhost race

View profile for TotalledZebra (totalledzebra)

Official speed 80.28 wpm (28.40 seconds elapsed during race)
Race Start October 16, 2019 11:04:34am UTC
Race Finish October 16, 2019 11:05:03am UTC
Outcome No win (1 of 1)
Accuracy 98.0%
Points 30.78
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