Shadow (x_shadow_x)

Race #2

View Pit Stop page for race #2 by x_shadow_xGhost race

View profile for Shadow (x_shadow_x)

Official speed 36.76 wpm (62.02 seconds elapsed during race)
Race Start June 8, 2023 12:49:16pm UTC
Race Finish June 8, 2023 12:50:18pm UTC
Outcome No win (2 of 3)
Accuracy 93.0%
Points 14.09
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