-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpassword-generator.py
37 lines (29 loc) · 932 Bytes
/
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
36
37
import string
import random
import sys
chars = list(string.ascii_letters)
nums = list(string.digits)
punc = list(string.punctuation)
password = []
nchar = int(input('How many chars u want in the password???'))
ndigits = int(input('How many digits u want in the password???'))
npunc = int(input('How many punctuation symbols u want in the password??? '))
total = nchar + ndigits + npunc
if total < 8:
print('the total number of letters for the password must be greater than or equal to 8!!!')
sys.exit()
else:
i = 0
j = 0
k = 0
while i < nchar or j < ndigits or k < npunc:
if i != nchar:
password.append(chars[random.randint(0 , len(chars) - 1)])
i+=1
if j != ndigits:
password.append(nums[random.randint(0 , len(nums) - 1)])
j+=1
if k != npunc:
password.append(punc[random.randint(0 , len(punc) - 1)])
k+=1
print(''.join(random.sample(password, len(password))))