Joe (zeioth)

Race #4

View Pit Stop page for race #4 by zeiothGhost race

View profile for Joe (zeioth)

Official speed 31.14 wpm (73.22 seconds elapsed during race)
Race Start April 15, 2021 3:45:04pm UTC
Race Finish April 15, 2021 3:46:17pm UTC
Outcome No win (2 of 2)
Accuracy 87.0%
Points 11.94
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