Ovidiu (oschipor)

Race #101

View Pit Stop page for race #101 by oschiporGhost race

View profile for Ovidiu (oschipor)

Official speed 27.47 wpm (83.00 seconds elapsed during race)
Race Start May 19, 2019 3:53:28pm UTC
Race Finish May 19, 2019 3:54:51pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 10.53
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