Alex (evil_alex)

Race #507

View Pit Stop page for race #507 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 52.60 wpm (43.35 seconds elapsed during race)
Race Start May 29, 2025 8:39:15am UTC
Race Finish May 29, 2025 8:39:59am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 20.16
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