Carson (meee42)

Race #9

View Pit Stop page for race #9 by meee42Ghost race

View profile for Carson (meee42)

Official speed 53.45 wpm (42.66 seconds elapsed during race)
Race Start December 11, 2018 2:55:55pm UTC
Race Finish December 11, 2018 2:56:38pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 20.49
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