View Pit Stop page for race #24 by bladevampirek — Ghost race
View profile for Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)
Official speed | 74.06 wpm (30.79 seconds elapsed during race) |
---|---|
Race Start | March 30, 2019 7:17:44am UTC |
Race Finish | March 30, 2019 7:18:14am UTC |
Outcome | Win (1 of 2) |
Accuracy | 97.0% |
Points | 28.39 |
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 |