LeSirH (lesirh)

Race #86

View Pit Stop page for race #86 by lesirhGhost race

View profile for LeSirH (lesirh)

Official speed 78.17 wpm (29.17 seconds elapsed during race)
Race Start September 9, 2019 3:13:11am UTC
Race Finish September 9, 2019 3:13:40am UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 29.97
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