gavinc (klontz)

Race #2

View Pit Stop page for race #2 by klontzGhost race

View profile for gavinc (klontz)

Official speed 80.13 wpm (28.45 seconds elapsed during race)
Race Start November 18, 2020 4:19:52am UTC
Race Finish November 18, 2020 4:20:21am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 30.72
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