标签: python list
我在python中有这样的列表。
list1=[1,2,4,0,5,0,3,0]
我想从列表中删除所有0。我该怎么办
答案 0 :(得分:0)
list1 = [item for item in list1 if item != 0]