View Pit Stop page for race #19 by anshkool — Ghost race
View profile for anshul (anshkool)
Official speed | 38.30 wpm (59.53 seconds elapsed during race) |
---|---|
Race Start | August 23, 2022 5:53:22am UTC |
Race Finish | August 23, 2022 5:54:22am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 14.68 |
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 |