Matthew (fryzigg)

Race #6

View Pit Stop page for race #6 by fryziggGhost race

View profile for Matthew (fryzigg)

Official speed 69.62 wpm (32.75 seconds elapsed during race)
Race Start June 29, 2021 1:26:10pm UTC
Race Finish June 29, 2021 1:26:42pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 26.69
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