The problem is complete the solution, a function that verifies that the string s is 4 or 6 long and consists only of numbers. For example, if s is "a234", return False, and if s is "1234", return True.
I didn't know why return False when s is "1234" in line 2 to line 3??
How can i fix it?
The len(s) is 4!
if len(s) != 4 or len(s) !=6:
return False