Race Result Details |
Racer | Renate (renatemonkeymoo) |
Race Number | 2 |
Date | Mon, 7 Dec 2020 1:55:05 |
Universe | code |
Speed |
41 WPM
![]() |
Accuracy | 95.7% |
Rank | 3rd place (out of 7) |
Opponents | kelvinkellner (1st place) tloyeet (5th 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)
|