以下各个选项中的Python语句执行的循环次数与其他不同的是?( )
for i in range(10):
print(i)
for i in range(10,0,-1):
i = 0
while (i<=10):
i = i+1
i = 10
while (i>0):
i = i-1