Question: 
Write a function to check whether the given month name contains 30 days or not.


Model's Code:
def check_monthnumber(month_name):
    months_with_30_days = ["April", "June", "September", "November"]
    return month_name in months_with_30_days



Sample Correct Code:
def check_monthnumber(monthname3):
  if monthname3 =="April" or monthname3== "June" or monthname3== "September" or monthname3== "November":
    return True
  else:
    return False


Asserts:
assert check_monthnumber("February")==False
assert check_monthnumber("June")==True
assert check_monthnumber("April")==True


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 191 of 974: 139/191 (72.77486910994764%): success