View Pit Stop page for race #1 by zizo1277 — Ghost race
View profile for Zizo (zizo1277)
Official speed | 56.35 wpm (40.46 seconds elapsed during race) |
---|---|
Race Start | July 2, 2023 4:29:17am UTC |
Race Finish | July 2, 2023 4:29:58am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 21.60 |
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 |