View Pit Stop page for race #23 by tuwuna — Ghost race
View profile for nullchilly (tuwuna)
Official speed | 73.94 wpm (30.84 seconds elapsed during race) |
---|---|
Race Start | November 13, 2021 11:17:17am UTC |
Race Finish | November 13, 2021 11:17:48am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 28.34 |
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 |