View Pit Stop page for race #15 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 75.25 wpm (30.30 seconds elapsed during race) |
---|---|
Race Start | June 30, 2025 6:49:56am UTC |
Race Finish | June 30, 2025 6:50:26am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 28.85 |
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 |