Anch (anch159)

Race #1

View Pit Stop page for race #1 by anch159Ghost race

View profile for Anch (anch159)

Official speed 95.83 wpm (23.79 seconds elapsed during race)
Race Start September 21, 2020 7:04:10pm UTC
Race Finish September 21, 2020 7:04:34pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 36.74
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