kostis (oh_yeah_go)

Race #45

View Pit Stop page for race #45 by oh_yeah_goGhost race

View profile for kostis (oh_yeah_go)

Official speed 39.60 wpm (57.58 seconds elapsed during race)
Race Start January 24, 2022 8:07:14pm UTC
Race Finish January 24, 2022 8:08:12pm UTC
Outcome No win (2 of 3)
Accuracy 93.0%
Points 15.18
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