Python For循环没有运行每个项目?

时间:2018-04-21 17:00:28

标签: python for-loop

如果我运行此代码:

a = ['bob','bob','bob','bob','bob','bob','bob']
b = ['bob']

for item in a:
    if item in b:
        a.remove(item)

我希望删除所有' bob'但是还剩下3个bob'我不明白。有人请赐教,我想我可能会失去理智。

0 个答案:

没有答案