icebox (flsf)

Race #30

View Pit Stop page for race #30 by flsfGhost race

View profile for icebox (flsf)

Official speed 81.59 wpm (27.94 seconds elapsed during race)
Race Start April 29, 2019 6:55:42pm UTC
Race Finish April 29, 2019 6:56:10pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 31.28
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