Nathy (nathy23)

Race #3

View Pit Stop page for race #3 by nathy23Ghost race

View profile for Nathy (nathy23)

Official speed 30.16 wpm (75.60 seconds elapsed during race)
Race Start June 3, 2023 7:41:58am UTC
Race Finish June 3, 2023 7:43:13am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 11.56
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