Matthew (fryzigg)

Race #5

View Pit Stop page for race #5 by fryziggGhost race

View profile for Matthew (fryzigg)

Official speed 75.72 wpm (30.11 seconds elapsed during race)
Race Start June 29, 2021 12:05:02pm UTC
Race Finish June 29, 2021 12:05:32pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 29.03
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