标签: python-3.x
使用Python 3,尝试在满足条件的情况下从列表中删除项目。
list = ["x", "y"] for item in list: if item == "x": list.pop() print(list) #output should be ["y"]
答案 0 :(得分:0)
您无法在迭代列表时对其进行修改。
尝试:
list.remove("x")