r (deroche1)

Race #78

View Pit Stop page for race #78 by deroche1Ghost race

View profile for r (deroche1)

Official speed 151.68 wpm (15.03 seconds elapsed during race)
Race Start February 16, 2019 7:54:03am UTC
Race Finish February 16, 2019 7:54:18am UTC
Outcome Win (1 of 2)
Accuracy 99.0%
Points 58.14
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