View Pit Stop page for race #41 by oschipor — Ghost race
View profile for Ovidiu (oschipor)
Official speed | 27.87 wpm (81.81 seconds elapsed during race) |
---|---|
Race Start | May 17, 2019 8:06:08am UTC |
Race Finish | May 17, 2019 8:07:29am UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 10.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 |