Race Result Details |
| Racer | Cristian (augustoxd2) |
| Race Number | 2 |
| Date | Sun, 26 Oct 2025 0:25:16 |
| Universe | code |
| Speed |
28 WPM
Try to beat?
|
| Accuracy | 93.3% |
| Rank | 4th place (out of 3) |
| Opponents | borjasoria (3rd place) marco_soria (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)
|
