Race Result Details |
Racer | Cristian Tacuri (cris1310) |
Race Number | 29 |
Date | Fri, 26 Sep 2025 16:31:37 |
Universe | code |
Speed |
23 WPM
![]() |
Accuracy | 90.6% |
Rank | 7th place (out of 7) |
Opponents | iverjoel (6th place) jhony99 (3rd place) luis_univ (4th 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)
|