Jason (zelniq)

Race #3

View Pit Stop page for race #3 by zelniqGhost race

View profile for Jason (zelniq)

Official speed 87.85 wpm (25.95 seconds elapsed during race)
Race Start November 27, 2019 8:11:44pm UTC
Race Finish November 27, 2019 8:12:10pm UTC
Outcome Win (1 of 2)
Accuracy 98.0%
Points 33.68
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