From aad3fca61032cfa8d81005b006466f4a1e0d22a5 Mon Sep 17 00:00:00 2001 From: Ridiculous Ate Date: Thu, 28 Sep 2017 17:35:52 -0400 Subject: [PATCH] Update password_generator.py increased user interactivity and more powerful usage of modules. --- other/password_generator.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/other/password_generator.py b/other/password_generator.py index 10ba77088..c4cfcbdca 100644 --- a/other/password_generator.py +++ b/other/password_generator.py @@ -12,3 +12,17 @@ max_length = 16 password = ''.join(random.choice(chars) for x in range(random.randint(min_length, max_length))) print('Password: ' + password) print('[ If you are thinking of using this passsword, You better save it. ]') +# ALTERNATIVE METHODS +# ctbi= characters that must be in password +# i= how many letters or characters the password length will be +def password_generator(ctbi, i): + # Password generator = full boot with random_number, random_letters, and random_character FUNCTIONS +def random_number(ctbi, i): + + + +def random_letters(ctbi, i): + + + +def random_characters(ctbi, i):