View Pit Stop page for race #3 by jasoone — Ghost race
View profile for Jason (jasoone)
Official speed | 90.24 wpm (25.27 seconds elapsed during race) |
---|---|
Race Start | April 11, 2025 6:11:42am UTC |
Race Finish | April 11, 2025 6:12:08am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 34.59 |
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 |