Alex (evil_alex)

Race #315

View Pit Stop page for race #315 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 49.70 wpm (45.88 seconds elapsed during race)
Race Start February 12, 2025 7:08:20pm UTC
Race Finish February 12, 2025 7:09:06pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 19.05
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