L = [1,3,4,6,8,9,11,12,13]for x in L: if x % 2 == 0: L.remove(x) else: continueprint(L)为什么结果是[1, 3, 6, 9, 11, 13]6为什么会出现。。。。。 查看完整描述