View Pit Stop page for race #4 by alaire05 — Ghost race
View profile for Alaire (alaire05)
Official speed | 33.94 wpm (67.18 seconds elapsed during race) |
---|---|
Race Start | June 25, 2023 12:22:31pm UTC |
Race Finish | June 25, 2023 12:23:38pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 13.01 |
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 |