Discussions Q&R
is there anything wrong in this please answer
import string
from random import *
letters = string.ascii_letters
digits = string.digits
chars = letters + digits
min_length = 9
max_length = 15
password = "".join(choice(chars) for x in range(randint(min_length, max_length)))
print(password)
1 Vote
4 RéponsesAujourd'hui en vedette
Why does it disappear?
0 Votes
What's wrong with my code?
1 Votes
OOP python questions
0 Votes
Web page
0 Votes
Python loops
0 Votes