Ovidiu (oschipor)

Race #91

View Pit Stop page for race #91 by oschiporGhost race

View profile for Ovidiu (oschipor)

Official speed 29.81 wpm (76.48 seconds elapsed during race)
Race Start May 18, 2019 4:57:42pm UTC
Race Finish May 18, 2019 4:58:58pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 11.43
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