View Pit Stop page for race #2 by stefanauwyang — Ghost race
View profile for Stefan (stefanauwyang)
Official speed | 60.11 wpm (37.93 seconds elapsed during race) |
---|---|
Race Start | January 2, 2023 12:03:17am UTC |
Race Finish | January 2, 2023 12:03:55am UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 23.04 |
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 |