Tyler (exilereject)

Race #3

View Pit Stop page for race #3 by exilerejectGhost race

View profile for Tyler (exilereject)

Official speed 53.68 wpm (42.47 seconds elapsed during race)
Race Start April 27, 2023 9:18:32am UTC
Race Finish April 27, 2023 9:19:15am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 20.58
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