Tyler (exilereject)

Race #4

View Pit Stop page for race #4 by exilerejectGhost race

View profile for Tyler (exilereject)

Official speed 52.16 wpm (43.71 seconds elapsed during race)
Race Start April 27, 2023 9:19:42am UTC
Race Finish April 27, 2023 9:20:26am UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 20.00
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