I (i_s_h_a_n)

Race #13

View Pit Stop page for race #13 by i_s_h_a_nGhost race

View profile for I (i_s_h_a_n)

Official speed 58.99 wpm (38.65 seconds elapsed during race)
Race Start May 31, 2023 8:22:14pm UTC
Race Finish May 31, 2023 8:22:53pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 22.61
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