View Pit Stop page for race #1 by shyla_ — Ghost race
View profile for Shyla (shyla_)
Official speed | 26.75 wpm (85.23 seconds elapsed during race) |
---|---|
Race Start | June 23, 2023 11:59:11am UTC |
Race Finish | June 23, 2023 12:00:36pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 10.25 |
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 |