We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ee6e5a4 + 4adf3b9 commit 1f41a31Copy full SHA for 1f41a31
other/password_generator.py
@@ -13,17 +13,23 @@
13
password = ''.join(random.choice(chars) for x in range(random.randint(min_length, max_length)))
14
print('Password: ' + password)
15
print('[ If you are thinking of using this passsword, You better save it. ]')
16
+
17
18
# ALTERNATIVE METHODS
19
# ctbi= characters that must be in password
20
# i= how many letters or characters the password length will be
21
def password_generator(ctbi, i):
22
# Password generator = full boot with random_number, random_letters, and random_character FUNCTIONS
23
+ pass # Put your code here...
24
25
26
def random_number(ctbi, i):
-
27
28
29
30
def random_letters(ctbi, i):
31
32
33
34
def random_characters(ctbi, i):
35
0 commit comments