Race Result Details |
Racer | tstats[imrola] (imrola) |
Race Number | 227 |
Date | Wed, 6 Nov 2024 9:48:06 |
Universe | code |
Speed |
45 WPM
![]() |
Accuracy | 95% |
Rank | 2nd place (out of 2) |
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
|