N (natejam)

Race #1

View Pit Stop page for race #1 by natejamGhost race

View profile for N (natejam)

Official speed 57.34 wpm (39.76 seconds elapsed during race)
Race Start December 5, 2020 6:14:58am UTC
Race Finish December 5, 2020 6:15:38am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 21.98
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