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


Model's Code:
def check_monthnumber_number(month):
    return month in [4, 6, 9, 11]



Sample Correct Code:
def check_monthnumber_number(monthnum3):
  if(monthnum3==4 or monthnum3==6 or monthnum3==9 or monthnum3==11):
    return True
  else:
    return False


Asserts:
assert check_monthnumber_number(6)==True
assert check_monthnumber_number(2)==False
assert check_monthnumber_number(12)==False


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

Test 762 of 974: 576/762 (75.59055118110236%): success