Race Result Details |
Racer | Luis Alberto Delgado Pinto (luis_univ) |
Race Number | 32 |
Date | Fri, 26 Sep 2025 16:31:12 |
Universe | code |
Speed |
31 WPM
![]() |
Accuracy | 93.5% |
Rank | 4th place (out of 7) |
Opponents | cris1310 (7th place) iverjoel (6th place) jhony99 (3rd place) noelbm (5th place) |
Text typed:
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
— (other)
by www.pythonforbeginners.com
(see stats)
|