Race Result Details |
Racer | Gautam (ramos2000) |
Race Number | 2 |
Date | Sun, 25 Jun 2023 12:14:30 |
Universe | code |
Speed |
34 WPM
![]() |
Accuracy | 91.9% |
Rank | 2nd place (out of 2) |
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)
|