icebox (flsf)

Race #2

View Pit Stop page for race #2 by flsfGhost race

View profile for icebox (flsf)

Official speed 82.01 wpm (27.80 seconds elapsed during race)
Race Start April 28, 2019 2:37:20am UTC
Race Finish April 28, 2019 2:37:48am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 31.44
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