1. 程式人生 > >python-day3 for,while

python-day3 for,while

break 執行 == while 打印 結果 else print 沒有

當循環正常退出,沒有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