最佳答案
我有个名单
a = ["a", "b", "c", "d", "e"]
我想在 for 循环中移除这个列表中的元素,如下所示:
for item in a:
print(item)
a.remove(item)
但是没用,我能做什么?