View Pit Stop page for race #179 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 61.16 wpm (37.28 seconds elapsed during race) |
---|---|
Race Start | March 26, 2020 12:58:50pm UTC |
Race Finish | March 26, 2020 12:59:27pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 95.0% |
Points | 23.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 |