continue的用法:
Python continue 語句跳出本次循環(huán),而break跳出整個(gè)循環(huán)外永。
continue 語句用來告訴Python跳過當(dāng)前循環(huán)的剩余語句,然后繼續(xù)進(jìn)行下一輪循環(huán)进肯。
continue語句用在while和for循環(huán)中牡彻。
# !/usr/bin/python
# -*- coding: UTF-8 -*-
for letter in 'Python': # 第一個(gè)實(shí)例
if letter == 'h':
continue
print '當(dāng)前字母 :', letter
所得結(jié)果如下:
當(dāng)前字母 : P
當(dāng)前字母 : y
當(dāng)前字母 : t
當(dāng)前字母 : o
當(dāng)前字母 : n