Alex Beltran T. (beltran_tarqui)

Race #94

View Pit Stop page for race #94 by beltran_tarquiGhost race

View profile for Alex Beltran T. (beltran_tarqui)

Official speed 38.13 wpm (59.80 seconds elapsed during race)
Race Start June 10, 2025 4:44:58pm UTC
Race Finish June 10, 2025 4:45:58pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 14.62
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