View Pit Stop page for race #17 by theunbeatenseven — Ghost race
View profile for Kharinandan (theunbeatenseven)
Official speed | 37.50 wpm (60.80 seconds elapsed during race) |
---|---|
Race Start | April 21, 2022 6:05:55pm UTC |
Race Finish | April 21, 2022 6:06:56pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 14.38 |
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 |