View Pit Stop page for race #5 by xlmax2lx — Ghost race
View profile for Max (xlmax2lx)
| Official speed | 73.00 wpm (31.23 seconds elapsed during race) |
|---|---|
| Race Start | May 3, 2023 1:36:40am UTC |
| Race Finish | May 3, 2023 1:37:11am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 98.0% |
| Points | 27.98 |
| 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 |