View Pit Stop page for race #19 by omer_nukic — Ghost race
View profile for Omer (omer_nukic)
Official speed | 43.67 wpm (52.21 seconds elapsed during race) |
---|---|
Race Start | October 8, 2021 5:07:54pm UTC |
Race Finish | October 8, 2021 5:08:46pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 16.74 |
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 |