View Pit Stop page for race #1 by celsius233 — Ghost race
View profile for Celsius 233 (celsius233)
Official speed | 62.75 wpm (36.33 seconds elapsed during race) |
---|---|
Race Start | November 19, 2020 4:14:46pm UTC |
Race Finish | November 19, 2020 4:15:22pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 24.06 |
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 |