r (deroche1)

Race #103

View Pit Stop page for race #103 by deroche1Ghost race

View profile for r (deroche1)

Official speed 149.32 wpm (15.27 seconds elapsed during race)
Race Start February 19, 2019 5:00:41am UTC
Race Finish February 19, 2019 5:00:56am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 57.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