View Pit Stop page for race #286 by kralt — Ghost race
View profile for KralTi (kralt)
Official speed | 38.00 wpm (60.00 seconds elapsed during race) |
---|---|
Race Start | March 29, 2025 10:39:59am UTC |
Race Finish | March 29, 2025 10:40:59am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 14.57 |
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 |