📜  从列表python代码示例中删除多个字符串

📅  最后修改于: 2022-03-11 14:45:06.613000             🧑  作者: Mango

代码示例1
# Python program to remove multiple
# elements from a list
 
# creating a list
list1 = [11, 5, 17, 18, 23, 50]
 
# Iterate each element in list
# and add them in variable total
for ele in list1:
    if ele % 2 == 0:
        list1.remove(ele)
 
# printing modified list
print("New list after removing all even numbers: ", list1)