Thom (deckard)

Race #1

View Pit Stop page for race #1 by deckardGhost race

View profile for Thom (deckard)

Official speed 93.37 wpm (24.42 seconds elapsed during race)
Race Start December 26, 2019 11:51:34pm UTC
Race Finish December 26, 2019 11:51:59pm UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 35.79
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