View Pit Stop page for race #5 by spondulix — Ghost race
View profile for spondunoob (spondulix)
Official speed | 78.93 wpm (28.89 seconds elapsed during race) |
---|---|
Race Start | February 16, 2019 5:48:15am UTC |
Race Finish | February 16, 2019 5:48:44am UTC |
Outcome | No win (4 of 5) |
Opponents |
1. deroche1 (135.17 wpm) 2. sidd_ (129.75 wpm) 3. actuallynonquitforlife (85.59 wpm) |
Accuracy | 97.0% |
Points | 30.25 |
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 |