r (deroche1)

Race #97

View Pit Stop page for race #97 by deroche1Ghost race

View profile for r (deroche1)

Official speed 133.66 wpm (17.06 seconds elapsed during race)
Race Start February 19, 2019 4:53:55am UTC
Race Finish February 19, 2019 4:54:12am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 51.24
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