條件語句是程式設計的基礎,因為它們允許您根據特定條件執行不同的程式碼區塊。在 Python 中,主要的條件語句是 if、elif 和 else。本文將詳細探討這些語句,並附有範例來說明它們的用法。
if 語句是條件語句最簡單的形式。它評估一個條件,如果該條件為 True,則執行其下面的程式碼區塊。
age = 18 if age >= 18: print("You are eligible to vote.")
在此範例中,程式檢查變數年齡是否大於或等於 18。由於條件為 True,因此訊息“您有資格投票”。已列印。
else 語句提供了一個替代程式碼區塊,當 if 條件計算結果為 False 時執行。它必須遵循 if 語句。
age = 16 if age >= 18: print("You are eligible to vote.") else: print("You are not eligible to vote.")
這裡,由於條件age >= 18為False,程式會印出「You are not Eligible to vote.」
elif(「else if」的縮寫)語句可讓您依序檢查多個條件。它可以用在 if 語句或另一個 elif 語句之後。
score = 85 if score >= 90: print("Grade: A") elif score >= 80: print("Grade: B") elif score >= 70: print("Grade: C") else: print("Grade: D")
在此範例中,程式檢查多個條件。分數 85 滿足 elif 分數 >= 80 條件,因此列印「Grade: B.」
Python 讓您可以使用邏輯運算子(例如 and、or 和 not)組合多個條件。這使得更複雜的決策成為可能。
temperature = 30 is_raining = False if temperature > 25 and not is_raining: print("It's a nice day for a picnic.") else: print("Maybe stay indoors.")
在此範例中,評估了兩個條件:溫度 > 25 為 True,is_raining 為 False,因此程式列印「It's a beautiful day for a picnic.」
您可以將條件語句嵌套在一起以檢查多個條件。這種方法對於處理複雜的場景很有用。
num = 10 if num > 0: print("The number is positive.") if num % 2 == 0: print("It is also even.") else: print("It is odd.") else: print("The number is negative.")
在這種情況下,程式首先檢查 num 是否為正數。既然如此,它會進一步檢查 num 是偶數還是奇數。輸出將是:
The number is positive. It is also even.
條件語句是 Python 中的一項強大功能,可以在程式中進行決策。透過使用 if、elif 和 else,您可以創建靈活且響應迅速的應用程序,以適應各種輸入和情況。對於任何想要編寫動態且高效的程式碼的程式設計師來說,了解如何有效地使用這些語句至關重要。
以上是理解 Python 中的條件語句的詳細內容。更多資訊請關注PHP中文網其他相關文章!