View Pit Stop page for race #2 by sophomaniac — Ghost race
View profile for Georgios (sophomaniac)
Official speed | 67.76 wpm (33.65 seconds elapsed during race) |
---|---|
Race Start | February 8, 2023 3:49:42pm UTC |
Race Finish | February 8, 2023 3:50:16pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 25.98 |
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 |