View Pit Stop page for race #3 by majesticfry — Ghost race
View profile for Majestic (majesticfry)
Official speed | 54.83 wpm (41.58 seconds elapsed during race) |
---|---|
Race Start | May 23, 2023 12:15:31pm UTC |
Race Finish | May 23, 2023 12:16:12pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 92.0% |
Points | 21.02 |
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 |