Sumit (smtchahal2)

Race #40

View Pit Stop page for race #40 by smtchahal2Ghost race

View profile for Sumit (smtchahal2)

Official speed 119.89 wpm (19.02 seconds elapsed during race)
Race Start September 13, 2021 6:53:45pm UTC
Race Finish September 13, 2021 6:54:04pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 45.96
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