Ronin Deschamps (real_roninx)

Race #1

View Pit Stop page for race #1 by real_roninxGhost race

View profile for Ronin Deschamps (real_roninx)

Official speed 31.21 wpm (73.05 seconds elapsed during race)
Race Start January 29, 2023 8:31:46pm UTC
Race Finish January 29, 2023 8:32:59pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 11.96
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