View Pit Stop page for race #4 by unofrommongolia — Ghost race
View profile for Uno (unofrommongolia)
Official speed | 78.21 wpm (29.15 seconds elapsed during race) |
---|---|
Race Start | February 19, 2025 6:37:10am UTC |
Race Finish | February 19, 2025 6:37:40am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 29.98 |
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 |