Question: 
Write a function to check if the given tuples contain the k or not.


Model's Code:
def check_K(tup, k):
    return k in tup



Sample Correct Code:
def check_K(test_tup, K):
  res = False
  for ele in test_tup:
    if ele == K:
      res = True
      break
  return (res) 


Asserts:
assert check_K((10, 4, 5, 6, 8), 6) == True
assert check_K((1, 2, 3, 4, 5, 6), 7) == False
assert check_K((7, 8, 9, 44, 11, 12), 11) == True


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

Test 808 of 974: 615/808 (76.11386138613861%): success