Skip to content

Commit aad3fca

Browse files
authored
Update password_generator.py
increased user interactivity and more powerful usage of modules.
1 parent e4ef5d4 commit aad3fca

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

other/password_generator.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,17 @@
1212
password = ''.join(random.choice(chars) for x in range(random.randint(min_length, max_length)))
1313
print('Password: ' + password)
1414
print('[ If you are thinking of using this passsword, You better save it. ]')
15+
# ALTERNATIVE METHODS
16+
# ctbi= characters that must be in password
17+
# i= how many letters or characters the password length will be
18+
def password_generator(ctbi, i):
19+
# Password generator = full boot with random_number, random_letters, and random_character FUNCTIONS
20+
def random_number(ctbi, i):
21+
22+
23+
24+
def random_letters(ctbi, i):
25+
26+
27+
28+
def random_characters(ctbi, i):

0 commit comments

Comments
 (0)