Race Result Details |
Racer | N/A (notapplicable) |
Race Number | 1 |
Date | Fri, 23 Nov 2018 21:57:57 |
Universe | code |
Speed |
83 WPM
![]() |
Accuracy | 95.5% |
Rank | 3rd place (out of 3) |
Opponents | 1a2a (2nd place) chakk (1st 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)
|