View Pit Stop page for race #24 by kralt — Ghost race
View profile for KralTi (kralt)
Official speed | 24.07 wpm (94.72 seconds elapsed during race) |
---|---|
Race Start | January 28, 2025 3:13:48pm UTC |
Race Finish | January 28, 2025 3:15:22pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 9.23 |
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 |