View Pit Stop page for race #1 by xenxa — Ghost race
View profile for xenxa (xenxa)
Official speed | 37.30 wpm (61.13 seconds elapsed during race) |
---|---|
Race Start | August 10, 2022 2:20:12pm UTC |
Race Finish | August 10, 2022 2:21:14pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 14.30 |
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 |