View Pit Stop page for race #87 by melvink — Ghost race
View profile for melvin (melvink)
Official speed | 41.86 wpm (54.47 seconds elapsed during race) |
---|---|
Race Start | May 28, 2023 5:06:27pm UTC |
Race Finish | May 28, 2023 5:07:21pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 16.05 |
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 |