Andrey (octoboar)

Race #5

View Pit Stop page for race #5 by octoboarGhost race

View profile for Andrey (octoboar)

Official speed 36.84 wpm (61.89 seconds elapsed during race)
Race Start November 26, 2020 11:06:13pm UTC
Race Finish November 26, 2020 11:07:15pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 14.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