Steve (iesftyper)

Race #8

View Pit Stop page for race #8 by iesftyperGhost race

View profile for Steve (iesftyper)

Official speed 62.77 wpm (36.32 seconds elapsed during race)
Race Start August 7, 2023 11:43:19pm UTC
Race Finish August 7, 2023 11:43:56pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 24.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