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


Model's Code:
def check_monthnumb_number(month):
    return month in [1, 3, 5, 7, 8, 10, 12]



Sample Correct Code:
def check_monthnumb_number(monthnum2):
  if(monthnum2==1 or monthnum2==3 or monthnum2==5 or monthnum2==7 or monthnum2==8 or monthnum2==10 or monthnum2==12):
    return True
  else:
    return False


Asserts:
assert check_monthnumb_number(5)==True
assert check_monthnumb_number(2)==False
assert check_monthnumb_number(6)==False


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

Test 455 of 974: 332/455 (72.96703296703296%): success