Race Result Details |
| Racer | leonidas (awsomaw) |
| Race Number | 51 |
| Date | Thu, 9 Jan 2025 2:05:00 |
| Universe | code |
| Speed |
129 WPM
Try to beat?
|
| Accuracy | 98.1% |
| Rank | 1st place (out of 3) |
| Opponents | benni_013 (3rd place) centritide (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)
|
