您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何分析python中的while語句,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
零基礎python入門-06 while語句
while語句示例
輸入:
#!/usr/bin/python
# Filename: while.py
number = 23
running = True
while running:
guess = int(input('Enter an integer : '))
if guess == number:
print('Congratulations, you guessed it.') running = False
# this causes the while loop to stop
elif guess < number:
print('No, it is a little higher than that.')
else:
print('No, it is a little lower than that.')
else:
print('The while loop is over.')
# Do anything else you want to do here
print('Done')
輸出:
Enter an integer : 50
No, it is a little lower than that.
Enter an integer : 22
No, it is a little higher than that.
Enter an integer : 23
Congratulations, you guessed it.
The while loop is over.
Done
解釋:
相比于if語句,所有代碼判斷一遍,執行完畢即可。While 為狀態條件,如果狀態條件始終滿足,那么while后的語句會循環執行。
直到狀態條件不滿足時,跳出循環。
本例中 前兩次輸入的所猜的數字沒有和實際數字相匹配時,running作為狀態條件始終為改變,所以循環執行未跳出。第3次猜中,running狀態更改 running=False,此時While循環結束跳出,繼續執行,輸出Done
上述內容就是如何分析python中的while語句,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。