Alex (evil_alex)

Race #512

View Pit Stop page for race #512 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 54.96 wpm (41.48 seconds elapsed during race)
Race Start June 18, 2025 6:25:23pm UTC
Race Finish June 18, 2025 6:26:04pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 21.07
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