View Pit Stop page for race #2 by _qusavin_ — Ghost race
View profile for qusavin (_qusavin_)
| Official speed | 38.01 wpm (59.98 seconds elapsed during race) |
|---|---|
| Race Start | September 26, 2021 10:50:46am UTC |
| Race Finish | September 26, 2021 10:51:46am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 93.0% |
| Points | 14.57 |
| 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 |