-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPasswordGenerator
More file actions
33 lines (24 loc) · 1.04 KB
/
Copy pathPasswordGenerator
File metadata and controls
33 lines (24 loc) · 1.04 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',
'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 the SuperPassword generator!")
nr_letters = int(input(f"How many letters would you like to use in your password?\n"))
nr_symbols = int(input(f"how many symbols would you like to use?\n"))
nr_numbers = int(input(f"How many numbers would you like to use?\n"))
password_list = []
for char in range(1, nr_symbols +1):
password_list.append(random.choice(letters))
for char in range(1, nr_symbols +1):
password_list += random.choice(symbols)
for char in range(1, nr_numbers + 1):
password_list += random.choice(numbers)
print(password_list)
random.shuffle(password_list)
print(password_list)
password = ""
for char in password_list:
password += char
print(f"your password is: {password}")