View Pit Stop page for race #25 by nabineo — Ghost race
View profile for Nabin (nabineo)
Official speed | 38.35 wpm (59.45 seconds elapsed during race) |
---|---|
Race Start | March 23, 2020 12:20:41pm UTC |
Race Finish | March 23, 2020 12:21:41pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 14.70 |
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 |