Karl (xillionpro)

Race #10

View Pit Stop page for race #10 by xillionproGhost race

View profile for Karl (xillionpro)

Official speed 56.55 wpm (40.32 seconds elapsed during race)
Race Start November 12, 2021 5:22:25pm UTC
Race Finish November 12, 2021 5:23:05pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 21.68
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