View Pit Stop page for race #26 by causenetsofv — Ghost race
View profile for da (causenetsofv)
Official speed | 75.32 wpm (30.27 seconds elapsed during race) |
---|---|
Race Start | December 7, 2020 8:10:48pm UTC |
Race Finish | December 7, 2020 8:11:18pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 28.87 |
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 |