View Pit Stop page for race #11 by englishassignment — Ghost race
View profile for Raunak (englishassignment)
Official speed | 70.71 wpm (32.24 seconds elapsed during race) |
---|---|
Race Start | June 12, 2023 8:10:46pm UTC |
Race Finish | June 12, 2023 8:11:18pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 27.10 |
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 |