View Pit Stop page for race #1 by typerzzz7 — Ghost race
View profile for Alif Sha (typerzzz7)
Official speed | 23.48 wpm (97.10 seconds elapsed during race) |
---|---|
Race Start | June 15, 2023 4:45:08pm UTC |
Race Finish | June 15, 2023 4:46:45pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 9.00 |
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 |