CanerCoban commited on
Commit
ee52cce
·
verified ·
1 Parent(s): 1a980e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ def password_generator(nol:int, nod:int,nos:int)-> str: #it's import to specify
23
  digits = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
24
  symbols = ['!', '#', '$', '%', '&', '(', ')', '*', '+']
25
 
26
- paswword_letters = [choice(letters) for _ in range(nol)]
27
  password_digits = [choice(digits) for _ in range(nod)]
28
  password_symbols = [choice(symbols) for _ in range(nos)]
29
 
 
23
  digits = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
24
  symbols = ['!', '#', '$', '%', '&', '(', ')', '*', '+']
25
 
26
+ password_letters = [choice(letters) for _ in range(nol)]
27
  password_digits = [choice(digits) for _ in range(nod)]
28
  password_symbols = [choice(symbols) for _ in range(nos)]
29