Q&A Discussões
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 Voto
4 RespostasCheck user input
0 Voto
1 RespostaQuente hoje
Whyy.
1 Votes
Java certification
1 Votes
Game dev
0 Votes
I can't understand the bug
0 Votes
Error with code
0 Votes