Charlie (hobboloydn)

Race #215

View Pit Stop page for race #215 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 67.65 wpm (33.70 seconds elapsed during race)
Race Start May 9, 2025 5:42:00pm UTC
Race Finish May 9, 2025 5:42:33pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 25.93
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