View Pit Stop page for race #4 by zead22 — Ghost race
View profile for ZeYaD22 (zead22)
Official speed | 72.43 wpm (31.48 seconds elapsed during race) |
---|---|
Race Start | January 26, 2020 7:50:19pm UTC |
Race Finish | January 26, 2020 7:50:51pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 27.76 |
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 |