(mitchellwu076)

Race #1

View Pit Stop page for race #1 by mitchellwu076Ghost race

View profile for (mitchellwu076)

Official speed 76.74 wpm (29.71 seconds elapsed during race)
Race Start December 1, 2020 4:00:32pm UTC
Race Finish December 1, 2020 4:01:02pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 29.42
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