Python的流程控制 - while

wh7577發表於2021-09-09

while與for相比

for迴圈用在有次數的迴圈上。

while迴圈用在有條件的控制上,和 if 比較相似。

while迴圈,直到表示式變為假(或者有一個break),才退出while迴圈,表示式是一個邏輯表示式,必須返回一個True或False。語法如下:

while expression:    statement(s)

現在我們寫一個while迴圈,讓使用者輸入指定字元退出,如下所示:

#!/usr/local/python3/bin/pythonx=''while x != 'q':    print('hello')    x=input("Please input something like q for quit :")    if not x:        break    if x=='quit':        continue    print("Please continue.")else:    print("world")

執行的測試結果如下:

[root@izj6cdhdoq5a5z7lfkmaeaz ~]# python whileE.pyhelloPlease input something like q for quit :ePlease continue.helloPlease input something like q for quit :rePlease continue.helloPlease input something like q for quit :quithelloPlease input something like q for quit :qPlease continue.world[root@izj6cdhdoq5a5z7lfkmaeaz ~]#

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2480/viewspace-2802613/,如需轉載,請註明出處,否則將追究法律責任。

相關文章