View Pit Stop page for race #1 by werwasdf — Ghost race
View profile for wer (werwasdf)
Official speed | 74.50 wpm (30.60 seconds elapsed during race) |
---|---|
Race Start | November 29, 2022 6:14:57pm UTC |
Race Finish | November 29, 2022 6:15:28pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 28.56 |
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 |