View Pit Stop page for race #9 by artemis_05 — Ghost race
View profile for monochrome (artemis_05)
Official speed | 67.46 wpm (33.80 seconds elapsed during race) |
---|---|
Race Start | July 21, 2022 12:44:29pm UTC |
Race Finish | July 21, 2022 12:45:02pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 99.0% |
Points | 25.86 |
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 |