View Pit Stop page for race #5 by darkec — Ghost race
View profile for Darko (darkec)
Official speed | 81.14 wpm (28.10 seconds elapsed during race) |
---|---|
Race Start | November 20, 2020 9:06:30am UTC |
Race Finish | November 20, 2020 9:06:58am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 31.11 |
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 |