View Pit Stop page for race #20 by typing_tank — Ghost race
View profile for Vaibhav Kumar (typing_tank)
Official speed | 39.17 wpm (58.21 seconds elapsed during race) |
---|---|
Race Start | August 3, 2023 6:56:58am UTC |
Race Finish | August 3, 2023 6:57:56am UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 15.02 |
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 |