View Pit Stop page for race #1 by ret2me — Ghost race
View profile for Filip (ret2me)
Official speed | 49.27 wpm (46.28 seconds elapsed during race) |
---|---|
Race Start | September 16, 2022 6:44:44pm UTC |
Race Finish | September 16, 2022 6:45:30pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 18.89 |
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 |