KralTi (kralt)

Race #177

View Pit Stop page for race #177 by kraltGhost race

View profile for KralTi (kralt)

Official speed 29.69 wpm (76.79 seconds elapsed during race)
Race Start March 9, 2025 5:42:04pm UTC
Race Finish March 9, 2025 5:43:21pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 11.38
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