(boy_314)

Race #70

View Pit Stop page for race #70 by boy_314Ghost race

View profile for (boy_314)

Official speed 93.32 wpm (24.43 seconds elapsed during race)
Race Start October 17, 2019 2:27:02am UTC
Race Finish October 17, 2019 2:27:27am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 35.77
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