View Pit Stop page for race #4 by mellikyun — Ghost race
View profile for Melvin (mellikyun)
Official speed | 63.73 wpm (35.78 seconds elapsed during race) |
---|---|
Race Start | June 29, 2023 9:04:57pm UTC |
Race Finish | June 29, 2023 9:05:33pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 24.43 |
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 |