switchedtocolemak (switchedtocolemak)

Race #2

View Pit Stop page for race #2 by switchedtocolemakGhost race

View profile for switchedtocolemak (switchedtocolemak)

Official speed 83.34 wpm (27.36 seconds elapsed during race)
Race Start September 29, 2021 4:33:36pm UTC
Race Finish September 29, 2021 4:34:04pm UTC
Outcome No win (1 of 1)
Accuracy 98.0%
Points 31.95
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