View Pit Stop page for race #47 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 81.11 wpm (28.11 seconds elapsed during race) |
---|---|
Race Start | July 2, 2025 8:22:28am UTC |
Race Finish | July 2, 2025 8:22:56am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 31.09 |
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 |