View Pit Stop page for race #7 by principle106 — Ghost race
View profile for Principle (principle106)
Official speed | 78.76 wpm (28.95 seconds elapsed during race) |
---|---|
Race Start | June 20, 2022 2:38:58am UTC |
Race Finish | June 20, 2022 2:39:26am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 30.19 |
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 |