溫馨提示×

python怎么刪除列表中多個元素

小億
109
2024-02-19 17:03:38
欄目: 編程語言

可以使用列表推導(dǎo)式或循環(huán)來刪除列表中的多個元素。以下是兩種方法:

  1. 使用列表推導(dǎo)式:
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)
  1. 使用循環(huán):
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)刪除列表中的多個元素。

0