View Pit Stop page for race #1 by deputyderpy — Ghost race
View profile for DeputyDerpy (deputyderpy)
Official speed | 64.47 wpm (35.37 seconds elapsed during race) |
---|---|
Race Start | February 17, 2023 5:39:54am UTC |
Race Finish | February 17, 2023 5:40:29am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 24.72 |
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 |