View Pit Stop page for race #18 by typing_tank — Ghost race
View profile for Vaibhav Kumar (typing_tank)
Official speed | 35.80 wpm (63.69 seconds elapsed during race) |
---|---|
Race Start | July 13, 2023 7:10:05pm UTC |
Race Finish | July 13, 2023 7:11:08pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 94.0% |
Points | 13.72 |
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 |