View Pit Stop page for race #5 by bazlightyear — Ghost race
View profile for Bazlightyear (bazlightyear)
| Official speed | 45.94 wpm (49.63 seconds elapsed during race) |
|---|---|
| Race Start | June 23, 2023 12:16:41am UTC |
| Race Finish | June 23, 2023 12:17:31am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 94.0% |
| Points | 17.61 |
| 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 |