LeSirH (lesirh)

Race #89

View Pit Stop page for race #89 by lesirhGhost race

View profile for LeSirH (lesirh)

Official speed 82.94 wpm (27.49 seconds elapsed during race)
Race Start September 22, 2019 12:59:58am UTC
Race Finish September 22, 2019 1:00:25am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 31.79
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