(cubeyfantwo)

Race #7

View Pit Stop page for race #7 by cubeyfantwoGhost race

View profile for (cubeyfantwo)

Official speed 77.84 wpm (29.29 seconds elapsed during race)
Race Start November 30, 2020 3:14:26pm UTC
Race Finish November 30, 2020 3:14:55pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 29.84
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