View Pit Stop page for race #1 by eugie — Ghost race
View profile for Eugene (eugie)
Official speed | 42.89 wpm (53.16 seconds elapsed during race) |
---|---|
Race Start | September 4, 2023 11:01:53am UTC |
Race Finish | September 4, 2023 11:02:46am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 16.44 |
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 |