Aloysius (dude101no)

Race #3

View Pit Stop page for race #3 by dude101noGhost race

View profile for Aloysius (dude101no)

Official speed 65.12 wpm (35.01 seconds elapsed during race)
Race Start June 19, 2023 6:18:35am UTC
Race Finish June 19, 2023 6:19:10am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 24.96
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