Mikhail (mayham92)

Race #165

View Pit Stop page for race #165 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 55.18 wpm (41.32 seconds elapsed during race)
Race Start November 5, 2021 7:49:55pm UTC
Race Finish November 5, 2021 7:50:36pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 21.15
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