tanon (tanon710s)

Race #50

View Pit Stop page for race #50 by tanon710sGhost race

View profile for tanon (tanon710s)

Official speed 107.53 wpm (21.20 seconds elapsed during race)
Race Start February 25, 2019 12:44:09pm UTC
Race Finish February 25, 2019 12:44:30pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 41.22
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