Race Result Details |
Racer | Rufus (jeggymendoza) |
Race Number | 2 |
Date | Tue, 25 Jun 2024 11:09:04 |
Universe | code |
Speed |
24 WPM
![]() |
Accuracy | 90.6% |
Rank | 3rd place (out of 1) |
Opponents | edos4 (1st place) palakol80 (2nd 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)
|