-
Notifications
You must be signed in to change notification settings - Fork 0
/
Password_Generator.py
35 lines (30 loc) · 1.36 KB
/
Password_Generator.py
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
34
35
import random
print ("Welcome to the Strong Password Generator !!")
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 = ['!', '#', '$', '%', '&', '(', ')', '*', '+']
nr_letters= int(input("How many letters would you like in your password? "))
nr_symbols = int(input(f"How many symbols would you like? "))
nr_numbers = int(input(f"How many numbers would you like? "))
password = ""
#Easy Level
for i in range(0,nr_letters):
password += random.choice(letters)
for i in range(0, nr_numbers):
password += random.choice(numbers)
for i in range(0,nr_symbols):
password += random.choice(symbols)
print(f"Hers's Your Easy Password: {password}")
#Hard Level
password_list = []
for i in range(0,nr_letters):
password_list += random.choice(letters)
for i in range(0, nr_numbers):
password_list += random.choice(numbers)
for i in range(0,nr_symbols):
password_list += random.choice(symbols)
password_hard = ""
random.shuffle(password_list)
for i in range (0, len(password_list)):
password_hard += password_list[i]
print("Here's a Stronger and Better password:",password_hard)