Race Result Details |
Racer | Karol Montoya Mendoza (karol_mm) |
Race Number | 24 |
Date | Mon, 30 Sep 2024 1:24:40 |
Universe | code |
Speed |
31 WPM
![]() |
Accuracy | 99.5% |
Rank | 1st place (out of 10) |
Opponents | jose_benito (5th place) kazaam37 (3rd place) ronnymorunoerquicia (4th 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)
|