标签: python loops for-loop
有人可以帮我解决这段代码吗?
我尝试使用for循环删除列表中的所有元素(不确定是否可能)。
以下是我的尝试:
list = ['1', '2', '3', '4', '5', '6'] for element in list : list.remove(element) print(list)
终端显示的是:
[' 2',' 4' ,' 6']