Minnie (dalamus)

Race #16

View Pit Stop page for race #16 by dalamusGhost race

View profile for Minnie (dalamus)

Official speed 101.26 wpm (22.52 seconds elapsed during race)
Race Start July 11, 2019 1:23:13pm UTC
Race Finish July 11, 2019 1:23:35pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 38.82
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