Race Result Details |
Racer | 2411 (khew123) |
Race Number | 6 |
Date | Wed, 15 Jan 2025 21:20:38 |
Universe | code |
Speed |
23 WPM
![]() |
Accuracy | 89% |
Rank | 5th place (out of 5) |
Opponents | huheho_1 (1st place) semauracing (2nd place) widot123 (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
—
Password Generator
|