View Pit Stop page for race #5 by causenetsofv — Ghost race
View profile for da (causenetsofv)
Official speed | 68.59 wpm (33.24 seconds elapsed during race) |
---|---|
Race Start | November 22, 2020 12:39:08am UTC |
Race Finish | November 22, 2020 12:39:42am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 26.29 |
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 |