View Pit Stop page for race #438 by evil_alex — Ghost race
View profile for Alex (evil_alex)
Official speed | 52.04 wpm (43.81 seconds elapsed during race) |
---|---|
Race Start | April 2, 2025 12:26:23pm UTC |
Race Finish | April 2, 2025 12:27:07pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 19.95 |
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 |