summaryrefslogtreecommitdiff
path: root/progs/a341.py
blob: ab12ee373af4f208c27bde1663811a4eeeb39f23 (plain)
1
2
3
4
5
6
7
def check_element(test_tup, check_list):
  res = False
  for ele in check_list:
    if ele in test_tup:
      res = True
      break
  return (res)