We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4ef5d4 commit aad3fcaCopy full SHA for aad3fca
other/password_generator.py
@@ -12,3 +12,17 @@
12
password = ''.join(random.choice(chars) for x in range(random.randint(min_length, max_length)))
13
print('Password: ' + password)
14
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