View Pit Stop page for race #234 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 96.14 wpm (23.72 seconds elapsed during race) |
---|---|
Race Start | July 25, 2019 12:28:06am UTC |
Race Finish | July 25, 2019 12:28:29am UTC |
Outcome | No win (2 of 3) |
Accuracy | 98.0% |
Points | 36.85 |
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 |