Marci (marci1233)

Race #1

View Pit Stop page for race #1 by marci1233Ghost race

View profile for Marci (marci1233)

Official speed 34.48 wpm (66.13 seconds elapsed during race)
Race Start January 3, 2022 6:56:54pm UTC
Race Finish January 3, 2022 6:58:00pm UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 13.22
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