Afzal (afzal_ansari)

Race #660

View Pit Stop page for race #660 by afzal_ansariGhost race

View profile for Afzal (afzal_ansari)

Official speed 38.35 wpm (59.45 seconds elapsed during race)
Race Start September 7, 2025 3:32:22pm UTC
Race Finish September 7, 2025 3:33:21pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 14.70
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