We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ae5abf commit f4a16f6Copy full SHA for f4a16f6
other/password_generator.py
@@ -1,4 +1,4 @@
1
-"""Password generator allows you to generate a random password of length N."""
+"""Password Generator allows you to generate a random password of length N."""
2
from random import choice, shuffle
3
from string import ascii_letters, digits, punctuation
4
@@ -24,7 +24,7 @@ def password_generator(length=8):
24
# ctbi= characters that must be in password
25
# i= how many letters or characters the password length will be
26
def alternative_password_generator(ctbi, i):
27
- # Password generator = full boot with random_number, random_letters, and
+ # Password Generator = full boot with random_number, random_letters, and
28
# random_character FUNCTIONS
29
# Put your code here...
30
i = i - len(ctbi)
0 commit comments