carbonmonkey (carbonmonkey)

Race #9

View Pit Stop page for race #9 by carbonmonkeyGhost race

View profile for carbonmonkey (carbonmonkey)

Official speed 33.21 wpm (68.65 seconds elapsed during race)
Race Start March 6, 2023 11:34:02pm UTC
Race Finish March 6, 2023 11:35:11pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 12.73
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