View Pit Stop page for race #1 by shahriar_2023 — Ghost race
View profile for Shahriar Ahmed (shahriar_2023)
Official speed | 37.30 wpm (61.13 seconds elapsed during race) |
---|---|
Race Start | May 28, 2023 2:58:13pm UTC |
Race Finish | May 28, 2023 2:59:14pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 14.30 |
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 |