Valera (xancola)

Race #2

View Pit Stop page for race #2 by xancolaGhost race

View profile for Valera (xancola)

Official speed 33.82 wpm (67.42 seconds elapsed during race)
Race Start November 18, 2020 2:03:22pm UTC
Race Finish November 18, 2020 2:04:29pm UTC
Outcome Win (1 of 2)
Accuracy 91.0%
Points 12.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