PonyTail (p0nytail)

Race #130

View Pit Stop page for race #130 by p0nytailGhost race

View profile for PonyTail (p0nytail)

Official speed 50.61 wpm (45.05 seconds elapsed during race)
Race Start February 10, 2024 4:51:50pm UTC
Race Finish February 10, 2024 4:52:35pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 19.40
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