Mocha (tdrewek)

Race #1

View Pit Stop page for race #1 by tdrewekGhost race

View profile for Mocha (tdrewek)

Official speed 41.90 wpm (54.42 seconds elapsed during race)
Race Start February 2, 2022 12:52:51am UTC
Race Finish February 2, 2022 12:53:45am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 16.06
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