📜  如何删除列表中的所有 2 python 代码示例

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

代码示例1
x = [2, 1, 2]
while 2 in x:
  remove(2)