summaryrefslogtreecommitdiff
path: root/progs/a559.py
blob: c782fabc372ea53298aea6e8bd6b5f440df93dc1 (plain)
1
2
3
def remove_tuples(test_list, K):
  res = [ele for ele in test_list if len(ele) != K]
  return (res)