Micah (micahfriesen)

Race #2

View Pit Stop page for race #2 by micahfriesenGhost race

View profile for Micah (micahfriesen)

Official speed 41.34 wpm (55.15 seconds elapsed during race)
Race Start January 4, 2021 11:02:53pm UTC
Race Finish January 4, 2021 11:03:48pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 15.85
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