symbolsnumbers (programmerpractice)

Race #23

View Pit Stop page for race #23 by programmerpracticeGhost race

View profile for symbolsnumbers (programmerpractice)

Official speed 41.06 wpm (55.53 seconds elapsed during race)
Race Start June 2, 2023 5:34:02pm UTC
Race Finish June 2, 2023 5:34:57pm UTC
Outcome No win (2 of 2)
Accuracy 94.0%
Points 15.74
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