View Pit Stop page for race #10 by bunajim — Ghost race
View profile for Abdullah (bunajim)
Official speed | 38.14 wpm (59.78 seconds elapsed during race) |
---|---|
Race Start | October 29, 2021 9:59:46am UTC |
Race Finish | October 29, 2021 10:00:46am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 14.62 |
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 |