View Pit Stop page for race #5 by ctring — Ghost race
View profile for Cuong (ctring)
Official speed | 102.09 wpm (22.33 seconds elapsed during race) |
---|---|
Race Start | July 11, 2025 6:53:48am UTC |
Race Finish | July 11, 2025 6:54:11am UTC |
Outcome | Win (1 of 3) |
Accuracy | 99.0% |
Points | 39.13 |
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 |