Shanon (shadowyshadows)

Race #11

View Pit Stop page for race #11 by shadowyshadowsGhost race

View profile for Shanon (shadowyshadows)

Official speed 104.03 wpm (21.92 seconds elapsed during race)
Race Start June 18, 2020 7:55:02pm UTC
Race Finish June 18, 2020 7:55:24pm UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 39.88
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