View Pit Stop page for race #1 by ginpaku — Ghost race
View profile for ILoveLofi (ginpaku)
Official speed | 48.23 wpm (47.27 seconds elapsed during race) |
---|---|
Race Start | June 3, 2023 5:48:50am UTC |
Race Finish | June 3, 2023 5:49:37am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 18.49 |
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 |