View Pit Stop page for race #1 by ananyo141 — Ghost race
View profile for Ananyobrata (ananyo141)
Official speed | 47.40 wpm (48.10 seconds elapsed during race) |
---|---|
Race Start | March 26, 2021 4:38:23pm UTC |
Race Finish | March 26, 2021 4:39:11pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 18.17 |
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 |