Po Caralho (pocaralho)

Race #11

View Pit Stop page for race #11 by pocaralhoGhost race

View profile for Po Caralho (pocaralho)

Official speed 63.07 wpm (36.15 seconds elapsed during race)
Race Start August 5, 2023 1:09:29pm UTC
Race Finish August 5, 2023 1:10:05pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 24.18
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