Johnny (johnchan215)

Race #1

View Pit Stop page for race #1 by johnchan215Ghost race

View profile for Johnny (johnchan215)

Official speed 49.80 wpm (45.78 seconds elapsed during race)
Race Start October 8, 2018 3:54:43am UTC
Race Finish October 8, 2018 3:55:29am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 19.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