第26502题
以下Python列表操作代码执行后最终输出结果是?
listA = [1,2,2,2,4,4,4]
print(listA)
for i in listA:
    if i % 2 == 0:
        listA.remove(i)
print(listA)
A

[1]

B

[1, 2, 4]

C

[1, 2, 4, 4]

D

触发异常