View Pit Stop page for race #1 by chrisprime49 — Ghost race
View profile for Chris Prime (chrisprime49)
Official speed | 53.94 wpm (42.27 seconds elapsed during race) |
---|---|
Race Start | August 8, 2023 4:14:49am UTC |
Race Finish | August 8, 2023 4:15:31am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 20.68 |
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 |