Race Result Details |
Racer | SeiunSKY (huheho_1) |
Race Number | 12 |
Date | Wed, 15 Jan 2025 21:19:58 |
Universe | code |
Speed |
39 WPM
![]() |
Accuracy | 95.6% |
Rank | 1st place (out of 5) |
Opponents | khew123 (5th 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
|