View Pit Stop page for race #1 by hisham_m — Ghost race
View profile for Hisham (hisham_m)
Official speed | 53.01 wpm (43.01 seconds elapsed during race) |
---|---|
Race Start | April 24, 2022 10:19:01pm UTC |
Race Finish | April 24, 2022 10:19:44pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 20.32 |
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 |