Race Result Details |
Racer | road to 170WPM (royaljaat) |
Race Number | 20 |
Date | Wed, 6 Jul 2022 16:10:18 |
Universe | code |
Speed |
70 WPM
![]() |
Accuracy | 95.9% |
Rank | 2nd place (out of 3) |
Opponents | jonsport (1st 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)
|