View Pit Stop page for race #1 by niviman — Ghost race
View profile for Nift (niviman)
Official speed | 42.12 wpm (54.13 seconds elapsed during race) |
---|---|
Race Start | November 18, 2020 8:19:02pm UTC |
Race Finish | November 18, 2020 8:19:56pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 16.15 |
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 |