• 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