-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword_generator.py
More file actions
33 lines (29 loc) · 1.12 KB
/
password_generator.py
File metadata and controls
33 lines (29 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import random
letters= ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j',
'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't',
'u', 'v', 'w', 'x', 'y', 'z','A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J',
'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T',
'U', 'V', 'W', 'X', 'Y', 'Z']
numbers=['0','1','2','3','4','5','6','7','8','9']
symbols=['!','@','#','$','%','&',')','(','*','-','+']
print("Welcome to password generator!")
n_letters=int(input("How many letters you want in your password:\n"))
n_numbers=int(input("How many numbers you want in your password:\n"))
n_symbols=int(input("How many symbols you want in your password:\n"))
password_list=[]
for i in range(1,n_letters+1):
char = random.choice(letters)
password_list+=char
for i in range(1,n_numbers+1):
char = random.choice(numbers)
password_list+=char
for i in range(1,n_symbols+1):
char = random.choice(symbols)
password_list+=char
print("Actual list:",password_list)
random.shuffle(password_list)
print("After shuffling the list:",password_list)
password=""
for char in password_list:
password+=char
print("Strong password:",password)