下面Python循环体执行的次数与其他不同的是?( )
i = 0
while (i<=10):
print(i)
i = i+1
i = 10
while (i>0):
i = i-1
for i in range(10):
for i in range(10,0,-1):