View Pit Stop page for race #1 by bigetou — Ghost race
View profile for Victor (bigetou)
Official speed | 61.05 wpm (37.35 seconds elapsed during race) |
---|---|
Race Start | November 24, 2020 11:28:38am UTC |
Race Finish | November 24, 2020 11:29:16am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 23.40 |
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 |