E (the_fast_one)

Race #31

View Pit Stop page for race #31 by the_fast_oneGhost race

View profile for E (the_fast_one)

Official speed 44.98 wpm (50.69 seconds elapsed during race)
Race Start June 25, 2023 5:22:47pm UTC
Race Finish June 25, 2023 5:23:38pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 17.24
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