可以使用列表推導(dǎo)式或循環(huán)來刪除列表中的多個元素。以下是兩種方法:
my_list = [1, 2, 3, 4, 5]
elements_to_remove = [2, 4]
new_list = [x for x in my_list if x not in elements_to_remove]
print(new_list)
my_list = [1, 2, 3, 4, 5]
elements_to_remove = [2, 4]
new_list = []
for x in my_list:
if x not in elements_to_remove:
new_list.append(x)
print(new_list)
無論使用哪種方法,都可以實現(xiàn)刪除列表中的多個元素。