View Pit Stop page for race #1 by a_grim_a — Ghost race
View profile for GRIM (a_grim_a)
Official speed | 31.22 wpm (73.03 seconds elapsed during race) |
---|---|
Race Start | June 23, 2023 3:41:45pm UTC |
Race Finish | June 23, 2023 3:42:58pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 11.97 |
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 |