View Pit Stop page for race #12 by reallavi — Ghost race
View profile for lavi (reallavi)
Official speed | 64.70 wpm (35.24 seconds elapsed during race) |
---|---|
Race Start | January 26, 2024 7:12:54pm UTC |
Race Finish | January 26, 2024 7:13:29pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 24.80 |
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 |