国产精品理论片_日韩激情视频一区_91免费版在线看_日韩专区在线_中文字幕国产一区_wwwjizz日本

您現在所在的位置:首頁 >學習資源 > Python全棧+人工智能入門教材 > Python基礎入門教程35:Python while 循環語句

Python基礎入門教程35:Python while 循環語句

來源:奇酷教育 發表于:

Python開發 Python教程 Python基礎

  Python While 循環語句
  Python 編程中 while 語句用于循環執行程序,即在某條件下,循環執行某段程序,以處理需要重復處理的相同任務。其基本形式為:
  while 判斷條件: 執行語句……
  執行語句可以是單個語句或語句塊。判斷條件可以是任何表達式,任何非零、或非空(null)的值均為true。
  當判斷條件假false時,循環結束。
  執行流程圖如下:


  實例
  #!/usr/bin/python count = 0while (count < 9): print 'The count is:', count count = count + 1 print "Good bye!"
  運行實例 »
  以上代碼執行輸出結果:

  The count is: 0The count is: 1The count is: 2The count is: 3The count is: 4The count is: 5The count is: 6The count is: 7The count is: 8Good bye!
  while 語句時還有另外兩個重要的命令 continue,break 來跳過循環,continue 用于跳過該次循環,break 則是用于退出循環,此外"判斷條件"還可以是個常值,表示循環必定成立,具體用法如下:
  # continue 和 break 用法 i = 1while i < 10: i += 1 if i%2 > 0: # 非雙數時跳過輸出 continue print i # 輸出雙數2、4、6、8、10 i = 1while 1: # 循環條件為1必定成立 print i # 輸出1~10 i += 1 if i > 10: # 當i大于10時跳出循環 break
  

無限循環 
  如果條件判斷語句永遠為 true,循環將會無限的執行下去,如下實例:
  實例
  #!/usr/bin/python# -*- coding: UTF-8 -*- var = 1while var == 1 : # 該條件永遠為true,循環將無限執行下去 num = raw_input("Enter a number :") print "You entered: ", num print "Good bye!"
  以上實例輸出結果:
  Enter a number :20You entered: 20Enter a number :29You entered: 29Enter a number :3You entered: 3Enter a number between :Traceback (most recent call last): File "test.py", line 5, in 
 num = raw_input("Enter a number :")KeyboardInterrupt
  注意:以上的無限循環你可以使用 CTRL+C 來中斷循環。
  

循環使用 else 語句 
  在 python 中,while … else 在循環條件為 false 時執行 else 語句塊:
  實例
  #!/usr/bin/python count = 0while count < 5: print count, " is less than 5" count = count + 1else: print count, " is not less than 5"
  以上實例輸出結果為:
  0 is less than 51 is less than 52 is less than 53 is less than 54 is less than 55 is not less than 5
  

簡單語句組 
  類似 if 語句的語法,如果你的 while 循環體中只有一條語句,你可以將該語句與while寫在同一行中, 如下所示:
  實例
  #!/usr/bin/python flag = 1 while (flag): print 'Given flag is really true!' print "Good bye!"
  注意:以上的無限循環你可以使用 CTRL+C 來中斷循環。
 
主站蜘蛛池模板: 日本羞羞影院 | 亚洲国产精品久久 | 国产精品av久久久久久毛片 | 黄色一级免费观看 | 久久人人网 | 国产精品一区二区三区在线播放 | 日韩一级不卡 | 这里只有精品99re | 亚洲黄色一级毛片 | 久久国产精品久久国产精品 | 狠狠撸在线视频 | 免费大黄视频 | 日韩欧美一区在线 | 日韩三级精品 | 91亚洲国产成人久久精品网站 | 蜜桃视频在线观看免费视频网站www | 国产精品av久久久久久毛片 | 亚洲麻豆 | 免费xxxx大片国产在线 | 亚洲传媒在线 | 欧美一区二区在线 | 亚洲国产第一页 | 色在线看 | 成人av免费在线观看 | xx视频在线| 精品免费国产视频 | 亚洲免费精品 | 特黄av| 国产激情小视频 | 91国自视频 | 人人射人人 | 96国产精品久久久久aⅴ四区 | 欧美激情在线精品一区二区三区 | 在线免费观看a级片 | 皇色视频在线 | 国产一区中文字幕 | 91精品国产综合久久久密闭 | 亚洲国产精品视频一区 | 中文字幕高清av | 日本免费黄色 | 91人人澡人人爽 |