View Pit Stop page for race #7 by carloszapata — Ghost race
View profile for Carlos (carloszapata)
Official speed | 45.50 wpm (50.11 seconds elapsed during race) |
---|---|
Race Start | May 13, 2023 7:52:56pm UTC |
Race Finish | May 13, 2023 7:53:46pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 17.44 |
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 |