Race Result Details |
Racer | Frank (frankbryden) |
Race Number | 5 |
Date | Tue, 17 Jun 2025 14:46:50 |
Universe | code |
Speed |
68 WPM
![]() |
Accuracy | 95.3% |
Rank | 1st place (out of 4) |
Opponents | alejo01 (4th 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)
|