View Pit Stop page for race #127 by hellothen — Ghost race
View profile for SalmanMKC (hellothen)
Official speed | 74.29 wpm (30.69 seconds elapsed during race) |
---|---|
Race Start | February 6, 2019 12:43:35pm UTC |
Race Finish | February 6, 2019 12:44:06pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 28.48 |
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 |