Leo (leo8786)

Race #3

View Pit Stop page for race #3 by leo8786Ghost race

View profile for Leo (leo8786)

Official speed 101.48 wpm (22.47 seconds elapsed during race)
Race Start April 7, 2021 3:08:39pm UTC
Race Finish April 7, 2021 3:09:02pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 38.90
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