View Pit Stop page for race #1 by snipermonkey19 — Ghost race
View profile for Sniper_monkey (snipermonkey19)
Official speed | 62.41 wpm (36.53 seconds elapsed during race) |
---|---|
Race Start | May 7, 2024 2:10:24am UTC |
Race Finish | May 7, 2024 2:11:01am UTC |
Outcome | No win (2 of 2) |
Accuracy | 97.0% |
Points | 23.92 |
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 |