anastasis (firegun233)

Race #8

View Pit Stop page for race #8 by firegun233Ghost race

View profile for anastasis (firegun233)

Official speed 25.81 wpm (88.34 seconds elapsed during race)
Race Start June 13, 2023 7:28:18am UTC
Race Finish June 13, 2023 7:29:46am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 9.89
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