View Pit Stop page for race #41 by kralt — Ghost race
View profile for KralTi (kralt)
Official speed | 30.28 wpm (75.30 seconds elapsed during race) |
---|---|
Race Start | February 8, 2025 4:52:51pm UTC |
Race Finish | February 8, 2025 4:54:06pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 11.61 |
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 |