View Pit Stop page for race #2 by kennethlu — Ghost race
View profile for Kenater (kennethlu)
Official speed | 70.94 wpm (32.14 seconds elapsed during race) |
---|---|
Race Start | September 1, 2025 11:31:38pm UTC |
Race Finish | September 1, 2025 11:32:10pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 96.0% |
Points | 27.20 |
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 |