(cubeyfantwo)

Race #5

View Pit Stop page for race #5 by cubeyfantwoGhost race

View profile for (cubeyfantwo)

Official speed 73.35 wpm (31.08 seconds elapsed during race)
Race Start November 29, 2020 5:15:00pm UTC
Race Finish November 29, 2020 5:15:31pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 28.12
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