iotku (iotku)

Race #7

View Pit Stop page for race #7 by iotkuGhost race

View profile for iotku (iotku)

Official speed 82.86 wpm (27.52 seconds elapsed during race)
Race Start June 18, 2023 11:27:11pm UTC
Race Finish June 18, 2023 11:27:39pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 31.76
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