python3 筆記10.迴圈結構中的關鍵字(break,continue,pass)

藥藥君發表於2018-10-18
# break,continue , pass 關鍵字在迴圈結構中的使用
#while迴圈舉例
a = 1
while a<10:
    a+=1
    if a==7:
        break #當滿足上述條件語句時,中斷迴圈,直接終止while迴圈跳出
        #continue #當滿足以上條件時,跳過本次迴圈,執行下一輪的迴圈
        #pass #佔位符,佔個位置
    print(a,end=' ')
else: #當上述迴圈非強制情況下完成迴圈,則執行else下的語句
    print("=====over=========")

# for舉例:
print()
str='python'
for obj in str:
    if obj=='t':
        continue
    print(obj,end=" ")
else:
    print("=====over=========")

 

相關文章