Andrew (andrew69314)

Race #1

View Pit Stop page for race #1 by andrew69314Ghost race

View profile for Andrew (andrew69314)

Official speed 81.73 wpm (27.90 seconds elapsed during race)
Race Start September 14, 2020 12:45:14am UTC
Race Finish September 14, 2020 12:45:42am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 31.33
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