View Pit Stop page for race #9 by turtletyper7 — Ghost race
View profile for Josh (turtletyper7)
Official speed | 30.64 wpm (74.41 seconds elapsed during race) |
---|---|
Race Start | July 23, 2023 11:38:27pm UTC |
Race Finish | July 23, 2023 11:39:41pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 92.0% |
Points | 11.75 |
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 |