View Pit Stop page for race #1 by gepullekev — Ghost race
View profile for Kevin (gepullekev)
Official speed | 53.66 wpm (42.49 seconds elapsed during race) |
---|---|
Race Start | June 11, 2023 7:30:22am UTC |
Race Finish | June 11, 2023 7:31:05am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 20.57 |
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 |