KillerSpider (mrlust)

Race #8

View Pit Stop page for race #8 by mrlustGhost race

View profile for KillerSpider (mrlust)

Official speed 54.40 wpm (41.91 seconds elapsed during race)
Race Start February 28, 2024 10:48:15am UTC
Race Finish February 28, 2024 10:48:57am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 20.85
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