vloek (tikpyp)

Race #409

View Pit Stop page for race #409 by tikpypGhost race

View profile for vloek (tikpyp)

Official speed 56.34 wpm (40.47 seconds elapsed during race)
Race Start May 18, 2025 3:35:35pm UTC
Race Finish May 18, 2025 3:36:15pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 21.60
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