View Pit Stop page for race #1 by typingfelix — Ghost race
View profile for Felix (typingfelix)
Official speed | 35.79 wpm (63.70 seconds elapsed during race) |
---|---|
Race Start | May 25, 2023 4:10:50pm UTC |
Race Finish | May 25, 2023 4:11:54pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 13.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 |