summaryrefslogtreecommitdiff
path: root/progs/a277.py
blob: 0f01baa412d3c7298bb4cafe944a9db686560c1f (plain)
1
2
3
def check_tuples(test_tuple, K):
  res = all(ele in K for ele in test_tuple)
  return (res)