Stefan (zamfigod)

Race #111

View Pit Stop page for race #111 by zamfigodGhost race

View profile for Stefan (zamfigod)

Official speed 59.90 wpm (38.06 seconds elapsed during race)
Race Start June 10, 2023 12:27:48am UTC
Race Finish June 10, 2023 12:28:26am UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 22.96
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