View Pit Stop page for race #20 by briankip1 — Ghost race
View profile for Brian Kip (briankip1)
Official speed | 31.00 wpm (73.55 seconds elapsed during race) |
---|---|
Race Start | August 9, 2023 10:18:35pm UTC |
Race Finish | August 9, 2023 10:19:49pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 11.88 |
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 |