以下选项中,哪段Python代码不能实现循环10次?(提醒:是不能实现)( )
for i in range(10):
for i in range(1,20,2):
for i in range(1,20):
i=i+2
i=0
while i<10:
i=i+1