Password Checker and GeneratorA program needs to be created that allows the user to check the strength of passwords and to generate strong passwords.T
InvisibleOneI'm not supposed to just write the code for you, but assuming you are doing this in python it shouldn't be that hard.
First off, for the password generation you just need a list of all the characters you want to use to make a password:
r = ['a', 'b', 'c', 'd', 'e', 'f', 'g'] # etc...
and then ask the user how long they want the password to be:
length = input("Password Length: (number) ")
convert that to an integer
length = int(length)
and then use a for loop with range to build the password
pas2 years ago
CodingCactusThe Ask board on Repl Talk is not for asking people to do things for you, it is for asking for help when you are struggling, and from what I can see you haven't even attempted this problem yourself.2 years ago
2IB/G/Jun18/8520/CA/CB/CC/CD/CEPassword Checker and GeneratorA program needs to be created that allows the user to check the strength of passwords and
InvisibleOneOk, well since this looks like some sort of homework I'm not allowed to just do the code for you, but really it shouldn't be that hard.
All you need to do is get the password as in input:
password = input("Password: ")
then split that password into characters so we can check through each one
password_characters = [char for char in password]
Make a variable to hold the points:
points = 0
Then check if the password includes the correct characters and award points.
symbols = ['!', '@', '#', '$', '%2 years ago