Wesley (wesleytmh)

Race #1

View Pit Stop page for race #1 by wesleytmhGhost race

View profile for Wesley (wesleytmh)

Official speed 62.90 wpm (36.25 seconds elapsed during race)
Race Start April 21, 2019 12:34:38pm UTC
Race Finish April 21, 2019 12:35:15pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 24.11
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