summaryrefslogtreecommitdiff
path: root/progs/a847.py
blob: 2de4852e9475afe762af0e68e553dab1e36432fd (plain)
1
2
3
def remove_matching_tuple(test_list1, test_list2):
  res = [sub for sub in test_list1 if sub not in test_list2]
  return (res)