当前位置:主页 > 软件编程 > Python代码 >
时间:2022-02-22 10:57:47 | 栏目:Python代码 | 点击:次
如下所示:
a = [1,1,1,2,3,45,1,2,1] a.remove(1) result: [1,1,2,3,45,1,2,1] while 1 in a: a.remove(1) result: [2,3,45,2]