掌握Python中的條件和循環對於控製程式流程和有效地重複任務至關重要。準備好潛入了嗎?讓我們一步步分解吧!
1。 If-Else 條件
if-else 語句讓你的程式做出決定。如果條件為 True,則執行一段程式碼;否則,執行 else 區塊。
範例:依年齡檢查選民資格
age = 20 if age >= 18: print("You are eligible to vote.") else: print("You are not eligible to vote.")
2。 Elif:處理多種條件
elif 語句可讓您依序檢查多個條件。如果第一個條件為 False,Python 將檢查下一個條件。
範例:找最大數字
num1, num2, num3 = 5, 10, 3 if num1 > num2 and num1 > num3: print("num1 is the greatest") elif num2 > num3: print("num2 is the greatest") else: print("num3 is the greatest")
3。 For 循環
for 迴圈將程式碼區塊重複特定次數的迭代。當您知道要循環一個序列多少次時,這是理想的選擇。
範例:使用範圍循環
for i in range(1, 11): print(i)
4。 While 迴圈
只要指定條件為 True,while 迴圈就會繼續執行程式碼區塊。當迭代次數未知時很有用。
範例:While 迴圈計數到 10
i = 1 while i <= 10: print(i) i += 1
條件和循環是 Python 中決策和重複的支柱。掌握 if-else、elif、for 和 while 迴圈將提升您的編碼技能。
想深入了解嗎?在 @hashnode 上閱讀我關於掌握 Python 中的條件和循環的完整文章!快樂編碼❤
以上是了解 Python 條件與循環:初學者指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!