View Pit Stop page for race #6 by svary — Ghost race
Official speed | 64.69 wpm (35.24 seconds elapsed during race) |
---|---|
Race Start | June 2, 2023 2:18:36pm UTC |
Race Finish | June 2, 2023 2:19:11pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 24.80 |
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 |