如果Python 3中满足某些条件,则从列表中删除一个项目

时间:2019-11-24 01:20:00

标签: python-3.x

使用Python 3,尝试在满足条件的情况下从列表中删除项目。

list = ["x", "y"]
for item in list:
  if item == "x":
    list.pop()
  print(list) #output should be ["y"]

1 个答案:

答案 0 :(得分:0)

您无法在迭代列表时对其进行修改。

尝试:

list.remove("x")