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


Model's Code:
def check_monthnum(month_name):
    return month_name == "February"



Sample Correct Code:
def check_monthnum(monthname1):
  if monthname1 == "February":
    return True
  else:
    return False


Asserts:
assert check_monthnum("February")==True
assert check_monthnum("January")==False
assert check_monthnum("March")==False


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

Test 336 of 974: 243/336 (72.32142857142857%): success