View Pit Stop page for race #30 by hyper_racer — Ghost race
View profile for kewl (hyper_racer)
Official speed | 54.12 wpm (42.13 seconds elapsed during race) |
---|---|
Race Start | May 1, 2019 4:44:34pm UTC |
Race Finish | May 1, 2019 4:45:17pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 20.75 |
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 |