Carlos (carloszapata)

Race #4

View Pit Stop page for race #4 by carloszapataGhost race

View profile for Carlos (carloszapata)

Official speed 43.93 wpm (51.90 seconds elapsed during race)
Race Start May 13, 2023 7:49:28pm UTC
Race Finish May 13, 2023 7:50:20pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 16.84
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