View Pit Stop page for race #5 by as77 — Ghost race
View profile for Fsociety (as77)
Official speed | 38.41 wpm (59.36 seconds elapsed during race) |
---|---|
Race Start | March 30, 2021 2:59:31am UTC |
Race Finish | March 30, 2021 3:00:30am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 14.72 |
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 |