View Pit Stop page for race #25 by astolfokawaii — Ghost race
View profile for Astolfo (astolfokawaii)
Official speed | 42.90 wpm (53.15 seconds elapsed during race) |
---|---|
Race Start | January 20, 2022 9:02:36am UTC |
Race Finish | January 20, 2022 9:03:29am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 16.45 |
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 |