permil (permil)

Race #118

View Pit Stop page for race #118 by permilGhost race

View profile for permil (permil)

Official speed 96.84 wpm (23.54 seconds elapsed during race)
Race Start February 25, 2019 3:24:19pm UTC
Race Finish February 25, 2019 3:24:42pm UTC
Outcome No win (2 of 3)
Accuracy 99.0%
Points 37.12
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