View Pit Stop page for race #3 by archer_2336 — Ghost race
View profile for Archer (archer_2336)
Official speed | 81.45 wpm (27.99 seconds elapsed during race) |
---|---|
Race Start | December 4, 2020 12:22:34pm UTC |
Race Finish | December 4, 2020 12:23:02pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 31.22 |
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 |