View Pit Stop page for race #1 by alishercpp — Ghost race
View profile for Ali (alishercpp)
Official speed | 34.63 wpm (65.84 seconds elapsed during race) |
---|---|
Race Start | May 31, 2023 4:18:48am UTC |
Race Finish | May 31, 2023 4:19:54am UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 13.28 |
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 |