Keytrap (keytrap)

Race #2

View Pit Stop page for race #2 by keytrapGhost race

View profile for Keytrap (keytrap)

Official speed 50.04 wpm (45.56 seconds elapsed during race)
Race Start June 16, 2023 2:22:42pm UTC
Race Finish June 16, 2023 2:23:28pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 19.18
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