Race Result Details |
Racer | mehul (mehul22) |
Race Number | 8 |
Date | Sat, 29 Jul 2023 13:02:49 |
Universe | code |
Speed |
35 WPM
![]() |
Accuracy | 95.5% |
Rank | 3rd place (out of 4) |
Opponents | aetherxt (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)
|