View Pit Stop page for race #18 by oschipor — Ghost race
View profile for Ovidiu (oschipor)
Official speed | 27.24 wpm (83.70 seconds elapsed during race) |
---|---|
Race Start | May 16, 2019 9:39:36am UTC |
Race Finish | May 16, 2019 9:40:59am UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 10.44 |
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 |