View Pit Stop page for race #488 by mayham92 — Ghost race
View profile for Mikhail (mayham92)
Official speed | 63.04 wpm (36.17 seconds elapsed during race) |
---|---|
Race Start | December 27, 2021 3:17:34pm UTC |
Race Finish | December 27, 2021 3:18:10pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 24.17 |
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 |