permil (permil)

Race #128

View Pit Stop page for race #128 by permilGhost race

View profile for permil (permil)

Official speed 117.10 wpm (19.47 seconds elapsed during race)
Race Start February 25, 2019 3:36:05pm UTC
Race Finish February 25, 2019 3:36:24pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 44.89
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