Kevin (skillz9600)

Race #10

View Pit Stop page for race #10 by skillz9600Ghost race

View profile for Kevin (skillz9600)

Official speed 55.01 wpm (41.45 seconds elapsed during race)
Race Start February 1, 2023 6:27:28pm UTC
Race Finish February 1, 2023 6:28:10pm UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 21.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