leonidas (awsomaw)

Race #28

View Pit Stop page for race #28 by awsomawGhost race

View profile for leonidas (awsomaw)

Official speed 140.98 wpm (16.17 seconds elapsed during race)
Race Start March 23, 2019 5:30:14am UTC
Race Finish March 23, 2019 5:30:30am UTC
Outcome No win (1 of 1)
Accuracy 99.0%
Points 54.04
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