View Pit Stop page for race #5 by manbearto — Ghost race
View profile for Joshua (manbearto)
Official speed | 30.84 wpm (73.93 seconds elapsed during race) |
---|---|
Race Start | January 2, 2023 10:00:33am UTC |
Race Finish | January 2, 2023 10:01:47am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 11.82 |
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 |