View Pit Stop page for race #1 by akki776 — Ghost race
View profile for akshat (akki776)
Official speed | 36.18 wpm (63.02 seconds elapsed during race) |
---|---|
Race Start | June 28, 2023 11:40:49pm UTC |
Race Finish | June 28, 2023 11:41:52pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 13.87 |
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 |