View Pit Stop page for race #8 by mega_13 — Ghost race
View profile for Adrian (mega_13)
Official speed | 37.16 wpm (61.36 seconds elapsed during race) |
---|---|
Race Start | August 22, 2023 2:49:14am UTC |
Race Finish | August 22, 2023 2:50:15am UTC |
Outcome | Win (1 of 3) |
Accuracy | 91.0% |
Points | 14.24 |
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 |