listoflists = [('one','two','three'),('four','five','six'),('seven','eight','nine')]toremove = ['three','five','nine']outcome = [tuple(item for item in list if item not in toremove) for list in listoflists]
创建一个新的元组列表a=[('one','two','three'),('four','five','six'),('seven','eight','nine')]b=['three','five','nine'][set(i).difference(b) for i in a] # if you do not care about the order inside the tuple