View Pit Stop page for race #3 by r4indeer — Ghost race
View profile for r4indeer (r4indeer)
| Official speed | 61.97 wpm (36.79 seconds elapsed during race) |
|---|---|
| Race Start | January 23, 2020 8:43:32am UTC |
| Race Finish | January 23, 2020 8:44:09am UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 95.0% |
| Points | 23.75 |
| 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 |