Arnold (arnoldchewbacca)

Race #58

View Pit Stop page for race #58 by arnoldchewbaccaGhost race

View profile for Arnold (arnoldchewbacca)

Official speed 69.02 wpm (33.03 seconds elapsed during race)
Race Start November 30, 2021 8:03:19pm UTC
Race Finish November 30, 2021 8:03:52pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 26.46
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