View Pit Stop page for race #8 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 75.29 wpm (30.28 seconds elapsed during race) |
---|---|
Race Start | June 21, 2025 9:12:46am UTC |
Race Finish | June 21, 2025 9:13:16am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 28.86 |
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 |