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