第12872题 单选
以下哪段Python代码不能实现循环10次?
A
for i in range(10):
B
for i in range(1,20,2):
C
for i in range(1,20):
    i=i+2
D
i=0
while i<10:
    i=i+1