Milan (m_i_n_o)

Race #2

View Pit Stop page for race #2 by m_i_n_oGhost race

View profile for Milan (m_i_n_o)

Official speed 38.78 wpm (58.79 seconds elapsed during race)
Race Start October 29, 2022 10:35:34am UTC
Race Finish October 29, 2022 10:36:33am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 14.87
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