Milan (m_i_n_o)

Race #8

View Pit Stop page for race #8 by m_i_n_oGhost race

View profile for Milan (m_i_n_o)

Official speed 38.39 wpm (59.39 seconds elapsed during race)
Race Start October 29, 2022 10:48:24am UTC
Race Finish October 29, 2022 10:49:23am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 14.72
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