vloek (tikpyp)

Race #391

View Pit Stop page for race #391 by tikpypGhost race

View profile for vloek (tikpyp)

Official speed 58.88 wpm (38.72 seconds elapsed during race)
Race Start May 17, 2025 8:39:01pm UTC
Race Finish May 17, 2025 8:39:39pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 22.57
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