Alex (evil_alex)

Race #298

View Pit Stop page for race #298 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 50.15 wpm (45.46 seconds elapsed during race)
Race Start February 7, 2025 4:59:29pm UTC
Race Finish February 7, 2025 5:00:14pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 19.22
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