File tree 1 file changed +12
-6
lines changed
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 13
13
password = '' .join (random .choice (chars ) for x in range (random .randint (min_length , max_length )))
14
14
print ('Password: ' + password )
15
15
print ('[ If you are thinking of using this passsword, You better save it. ]' )
16
+
17
+
16
18
# ALTERNATIVE METHODS
17
19
# ctbi= characters that must be in password
18
20
# i= how many letters or characters the password length will be
19
21
def password_generator (ctbi , i ):
20
22
# Password generator = full boot with random_number, random_letters, and random_character FUNCTIONS
23
+ pass # Put your code here...
24
+
25
+
21
26
def random_number (ctbi , i ):
22
-
23
-
24
-
27
+ pass # Put your code here...
28
+
29
+
25
30
def random_letters (ctbi , i ):
26
-
27
-
28
-
31
+ pass # Put your code here...
32
+
33
+
29
34
def random_characters (ctbi , i ):
35
+ pass # Put your code here...
You can’t perform that action at this time.
0 commit comments