nmyo (nmyo)

Race #20

View Pit Stop page for race #20 by nmyoGhost race

View profile for nmyo (nmyo)

Official speed 75.66 wpm (30.13 seconds elapsed during race)
Race Start February 25, 2019 2:38:49pm UTC
Race Finish February 25, 2019 2:39:19pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 29.00
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