View Pit Stop page for race #4 by camillezajac — Ghost race
View profile for Camille (camillezajac)
Official speed | 44.23 wpm (51.55 seconds elapsed during race) |
---|---|
Race Start | November 27, 2020 4:13:59pm UTC |
Race Finish | November 27, 2020 4:14:51pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 16.95 |
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 |