Race Result Details |
Racer | OSoverspike (osoverspike) |
Race Number | 11 |
Date | Fri, 29 Sep 2023 1:20:28 |
Universe | code |
Speed |
71 WPM
![]() |
Accuracy | 96.4% |
Rank | 3rd place (out of 5) |
Opponents | spoon_han (2nd place) vinkwok (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)
|