mdlp (mdlp)

Race #1

View Pit Stop page for race #1 by mdlpGhost race

View profile for mdlp (mdlp)

Official speed 56.14 wpm (40.61 seconds elapsed during race)
Race Start September 9, 2023 11:20:25pm UTC
Race Finish September 9, 2023 11:21:06pm UTC
Outcome No win (2 of 2)
Accuracy 97.0%
Points 21.52
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