View Pit Stop page for race #5 by bruddenem — Ghost race
View profile for Bruddenem (bruddenem)
Official speed | 39.13 wpm (58.27 seconds elapsed during race) |
---|---|
Race Start | July 25, 2023 10:17:51am UTC |
Race Finish | July 25, 2023 10:18:49am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 15.00 |
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 |