View Pit Stop page for race #7 by zeloceb — Ghost race
View profile for bruh (zeloceb)
Official speed | 35.54 wpm (64.15 seconds elapsed during race) |
---|---|
Race Start | January 24, 2022 3:25:40pm UTC |
Race Finish | January 24, 2022 3:26:44pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 13.62 |
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 |