(sputype)

Race #8

View Pit Stop page for race #8 by sputypeGhost race

View profile for (sputype)

Official speed 70.70 wpm (32.25 seconds elapsed during race)
Race Start March 2, 2019 7:53:06pm UTC
Race Finish March 2, 2019 7:53:39pm UTC
Outcome Win (1 of 2)
Accuracy 97.0%
Points 27.10
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