View Pit Stop page for race #18 by perseveringsnail — Ghost race
View profile for Snail (perseveringsnail)
Official speed | 32.52 wpm (70.11 seconds elapsed during race) |
---|---|
Race Start | June 1, 2023 10:35:40am UTC |
Race Finish | June 1, 2023 10:36:50am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 12.47 |
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 |