DEV Community

Tosin Coker
Tosin Coker

Posted on

Answer: Password verification in Python

I think like myself you are new to this. I find the following wrong with your code interpretation of the problem Condition 1 and 2 are misplaced If statement is in the wrong loop. Your match is also not switched.

Check this out:

def password_verification():
    password1 = input('Please enter a

Top comments (0)