View Pit Stop page for race #1 by khairo_j1 — Ghost race
View profile for Khing (khairo_j1)
Official speed | 58.44 wpm (39.01 seconds elapsed during race) |
---|---|
Race Start | June 2, 2023 4:25:41pm UTC |
Race Finish | June 2, 2023 4:26:20pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 97.0% |
Points | 22.40 |
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 |