Suraj Pratap Singh (s_p_singh)

Race #1

View Pit Stop page for race #1 by s_p_singhGhost race

View profile for Suraj Pratap Singh (s_p_singh)

Official speed 24.23 wpm (94.10 seconds elapsed during race)
Race Start May 24, 2023 12:56:23am UTC
Race Finish May 24, 2023 12:57:57am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 9.29
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