I have two python lists:
a = [(\'when\', 3), (\'why\', 4), (\'throw\', 9), (\'send\', 15), (\'you\', 1)] b = [\'the\', \'when\', \'send\', \'we\', \'us\'] <
Use filter:
c = filter(lambda (x, y): False if x in b else True, a)