View Pit Stop page for race #1 by the_eighth_wonder — Ghost race
View profile for Lucian (the_eighth_wonder)
Official speed | 39.34 wpm (57.96 seconds elapsed during race) |
---|---|
Race Start | July 18, 2021 8:09:56am UTC |
Race Finish | July 18, 2021 8:10:54am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 15.08 |
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 |