View Pit Stop page for race #1 by newbie03 — Ghost race
View profile for __Newbie (newbie03)
Official speed | 27.59 wpm (82.64 seconds elapsed during race) |
---|---|
Race Start | August 18, 2023 6:16:04am UTC |
Race Finish | August 18, 2023 6:17:26am UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 10.58 |
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 |