View Pit Stop page for race #1 by tsampley — Ghost race
View profile for Taush (tsampley)
Official speed | 64.94 wpm (35.11 seconds elapsed during race) |
---|---|
Race Start | June 21, 2021 3:13:15pm UTC |
Race Finish | June 21, 2021 3:13:50pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 24.89 |
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 |