View Pit Stop page for race #22 by stevenelias — Ghost race
View profile for StevenElias (stevenelias)
Official speed | 32.96 wpm (69.17 seconds elapsed during race) |
---|---|
Race Start | February 2, 2025 12:52:39pm UTC |
Race Finish | February 2, 2025 12:53:48pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 12.63 |
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 |