(ninja_h2)

Race #4

View Pit Stop page for race #4 by ninja_h2Ghost race

View profile for (ninja_h2)

Official speed 62.41 wpm (36.53 seconds elapsed during race)
Race Start September 4, 2022 8:24:23am UTC
Race Finish September 4, 2022 8:25:00am UTC
Outcome No win (2 of 2)
Accuracy 94.0%
Points 23.92
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