Anonymous (secret_codes)

Race #160

View Pit Stop page for race #160 by secret_codesGhost race

View profile for Anonymous (secret_codes)

Official speed 31.27 wpm (72.91 seconds elapsed during race)
Race Start October 6, 2018 2:23:13pm UTC
Race Finish October 6, 2018 2:24:26pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 11.99
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