(sputype)

Race #35

View Pit Stop page for race #35 by sputypeGhost race

View profile for (sputype)

Official speed 66.48 wpm (34.30 seconds elapsed during race)
Race Start February 9, 2020 5:03:24am UTC
Race Finish February 9, 2020 5:03:58am UTC
Outcome Win (1 of 2)
Accuracy 97.0%
Points 25.48
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