View Pit Stop page for race #1 by imightbeaperson — Ghost race
View profile for K (imightbeaperson)
Official speed | 55.88 wpm (40.80 seconds elapsed during race) |
---|---|
Race Start | August 10, 2023 1:38:45am UTC |
Race Finish | August 10, 2023 1:39:26am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 21.42 |
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 |