View Pit Stop page for race #49 by daniel3131 — Ghost race
View profile for daniel3131 (daniel3131)
| Official speed | 89.78 wpm (25.40 seconds elapsed during race) |
|---|---|
| Race Start | July 30, 2020 10:45:02am UTC |
| Race Finish | July 30, 2020 10:45:27am UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 98.0% |
| Points | 34.42 |
| 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 |