Sesiones de PyR
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 RespuestasEn tendencia hoy
Python stressed me out
1 Votes
Course Doubt
1 Votes
Data analysis
0 Votes
Lesson Takeaways
0 Votes
Saved code
0 Votes
Help
0 Votes