View Pit Stop page for race #40 by daniel3131 — Ghost race
View profile for daniel3131 (daniel3131)
Official speed | 67.88 wpm (33.59 seconds elapsed during race) |
---|---|
Race Start | October 18, 2019 6:50:42am UTC |
Race Finish | October 18, 2019 6:51:16am UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 26.02 |
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 |