Light Mode
Dark Mode
Acceptable password 2

def isacceptablepassword(password: str) -> bool: x=len(password) if x > 6: if password.isalpha(): return False elif password.isnumeric(): return False else: return True else: return False what is the problem with the code i donot know

  • code_review
Created: April 5, 2020, 1:17 p.m.
Updated: April 5, 2020, 2:13 p.m.
0
8
User avatar
zohairmustafa5