(sidd_)

Race #5

View Pit Stop page for race #5 by sidd_Ghost race

View profile for (sidd_)

Official speed 135.83 wpm (16.79 seconds elapsed during race)
Race Start October 3, 2018 4:59:59pm UTC
Race Finish October 3, 2018 5:00:16pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 52.07
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