View Pit Stop page for race #20 by john_mat — Ghost race
View profile for john mat (john_mat)
Official speed | 42.65 wpm (53.46 seconds elapsed during race) |
---|---|
Race Start | February 4, 2023 7:51:20am UTC |
Race Finish | February 4, 2023 7:52:14am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 16.35 |
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 |