View Pit Stop page for race #2 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
Official speed | 96.34 wpm (23.67 seconds elapsed during race) |
---|---|
Race Start | February 16, 2019 5:42:09am UTC |
Race Finish | February 16, 2019 5:42:32am UTC |
Outcome | No win (3 of 7) |
Opponents |
1. sidd_ (137.31 wpm) 2. deroche1 (134.17 wpm) 4. spondulix (81.95 wpm) 5. actuallynonquitforlife (78.20 wpm) |
Accuracy | 96.0% |
Points | 36.93 |
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 |