首页 > 代码库 > python-day3 for,while

python-day3 for,while

当循环正常退出,没有break   就会 执行else,一般用于   打印执行结果

for i in range(3):

  print (i)

else:

  print ("==========>ok")

i=0

while  i<3:

  print (i)

  i +=1

else:

  print (‘3‘)

python-day3 for,while