View Pit Stop page for race #2 by pegasus898 — Ghost race
View profile for Pegasus (pegasus898)
| Official speed | 26.46 wpm (86.17 seconds elapsed during race) |
|---|---|
| Race Start | June 21, 2023 1:59:57pm UTC |
| Race Finish | June 21, 2023 2:01:23pm UTC |
| Outcome | Win (1 of 4) |
| Accuracy | 96.0% |
| Points | 10.14 |
| 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 |