View Pit Stop page for race #2 by kelvinkellner — Ghost race
View profile for Kelvin (kelvinkellner)
Official speed | 58.82 wpm (38.76 seconds elapsed during race) |
---|---|
Race Start | December 7, 2020 1:54:09am UTC |
Race Finish | December 7, 2020 1:54:48am UTC |
Outcome | Win (1 of 7) |
Accuracy | 95.0% |
Points | 22.55 |
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 |