Andrey (octoboar)

Race #7

View Pit Stop page for race #7 by octoboarGhost race

View profile for Andrey (octoboar)

Official speed 49.47 wpm (46.09 seconds elapsed during race)
Race Start December 1, 2020 2:12:06pm UTC
Race Finish December 1, 2020 2:12:52pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 18.96
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