Alex (evil_alex)

Race #447

View Pit Stop page for race #447 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 52.99 wpm (43.03 seconds elapsed during race)
Race Start April 6, 2025 2:44:19pm UTC
Race Finish April 6, 2025 2:45:03pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 20.31
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