View Pit Stop page for race #1 by whut_ermehgerd — Ghost race
View profile for April (whut_ermehgerd)
Official speed | 40.97 wpm (55.65 seconds elapsed during race) |
---|---|
Race Start | February 23, 2023 4:10:29pm UTC |
Race Finish | February 23, 2023 4:11:25pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 15.70 |
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 |