View Pit Stop page for race #5 by typing_tank — Ghost race
View profile for Vaibhav Kumar (typing_tank)
Official speed | 38.77 wpm (58.81 seconds elapsed during race) |
---|---|
Race Start | July 9, 2023 6:14:05pm UTC |
Race Finish | July 9, 2023 6:15:04pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 14.86 |
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 |