Race Result Details |
Racer | Erick (strosekd) |
Race Number | 7 |
Date | Wed, 24 Jul 2024 20:49:53 |
Universe | code |
Speed |
63 WPM
![]() |
Accuracy | 95.6% |
Rank | 1st place (out of 2) |
Opponents | jordan_speedy_hands (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)
|