View Pit Stop page for race #2 by zanies07 — Ghost race
View profile for tstats[zanies07] (zanies07)
Official speed | 44.04 wpm (51.77 seconds elapsed during race) |
---|---|
Race Start | January 5, 2023 1:39:29pm UTC |
Race Finish | January 5, 2023 1:40:21pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 16.88 |
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 |