Shanon (shadowyshadows)

Race #7

View Pit Stop page for race #7 by shadowyshadowsGhost race

View profile for Shanon (shadowyshadows)

Official speed 86.79 wpm (26.27 seconds elapsed during race)
Race Start June 6, 2020 7:28:29pm UTC
Race Finish June 6, 2020 7:28:55pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 33.27
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