View Pit Stop page for race #12 by danjkstra — Ghost race
View profile for danjkstra (danjkstra)
Official speed | 43.62 wpm (52.27 seconds elapsed during race) |
---|---|
Race Start | November 9, 2022 1:58:03pm UTC |
Race Finish | November 9, 2022 1:58:55pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 16.72 |
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 |