一级毛片免费不卡在线视频,国产日批视频免费在线观看,菠萝菠萝蜜在线视频免费视频,欧美日韩亚洲无线码在线观看,久久精品这里精品,国产成人综合手机在线播放,色噜噜狠狠狠综合曰曰曰,琪琪视频

Python continue 語句 -電腦資料

電腦資料 時間:2019-01-01 我要投稿
【m.oriental01.com - 電腦資料】

   

Python continue 語句

    Python continue 語句跳出本次循環(huán),而break跳出整個循環(huán),

Python continue 語句

。

    continue 語句用來告訴Python跳過當前循環(huán)的剩余語句,然后繼續(xù)進行下一輪循環(huán)。

    continue語句用在while和for循環(huán)中。

    Python 語言 continue 語句語法格式如下:

continue

    流程圖:

    實例:

#!/usr/bin/python# -*- coding: UTF-8 -*-for letter in 'Python':     # 第一個實例   if letter == 'h':      continue   print '當前字母 :', lettervar = 10                    # 第二個實例while var > 0:                 var = var -1   if var == 5:      continue   print '當前變量值 :', varprint "Good bye!"

    以上實例執(zhí)行結(jié)果:

當前字母 : P當前字母 : y當前字母 : t當前字母 : o當前字母 : n當前變量值 : 9當前變量值 : 8當前變量值 : 7當前變量值 : 6當前變量值 : 4當前變量值 : 3當前變量值 : 2當前變量值 : 1當前變量值 : 0Good bye

Python pass 語句

    Python pass是空語句,是為了保持程序結(jié)構(gòu)的完整性,

電腦資料

Python continue 語句》(http://m.oriental01.com)。

    passass 不做任何事情,一般用做占位語句。

    Python 語言 pass 語句語法格式如下:

pass

    實例:

#!/usr/bin/python# -*- coding: UTF-8 -*- # 輸出 Python 的每個字母for letter in 'Python':   if letter == 'h':      pass      print '這是 pass 塊'   print '當前字母 :', letterprint "Good bye!"

    以上實例執(zhí)行結(jié)果:

當前字母 : P當前字母 : y當前字母 : t這是 pass 塊當前字母 : h當前字母 : o當前字母 : nGood bye!
!

最新文章