View Pit Stop page for race #8 by chillee — Ghost race
View profile for Horace (chillee)
Official speed | 95.71 wpm (23.82 seconds elapsed during race) |
---|---|
Race Start | December 4, 2018 7:07:18am UTC |
Race Finish | December 4, 2018 7:07:42am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. bladevampirek (68.22 wpm) |
Accuracy | 99.0% |
Points | 36.69 |
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 |