Alex (alexklaus)

Race #76

View Pit Stop page for race #76 by alexklausGhost race

View profile for Alex (alexklaus)

Official speed 66.90 wpm (34.08 seconds elapsed during race)
Race Start March 31, 2019 10:55:59am UTC
Race Finish March 31, 2019 10:56:33am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 25.65
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