Password Validating Problem | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Password Validating Problem

Task: Write a program that takes in a string as input and evaluates it as a valid password. The password is valid if it has at a minimum 2 numbers, 2 of the following special characters ('!', '@', '#', '

#x27;, '%', '&', '*'), and a length of at least 7 characters. If the password passes the check, output 'Strong', else output 'Weak'. Input Format: A string representing the password to evaluate. Output Format: A string that says 'Strong' if the input meets the requirements, or 'Weak', if not. i have made this script, but it doesn't work with the 8th case. I searched for a flaw in the script, but; it all seems correct. Some idea? https://code.sololearn.com/c05O865cLwZI/?ref=app

19th Jun 2020, 5:51 PM
Biondi Tommaso
Biondi Tommaso - avatar
1 Answer
+ 4
I got what's the wrong , read the problem carefully and you'll get to know how to fix 🙂
20th Jun 2020, 5:35 AM
vaibhav
vaibhav - avatar