與其他程式語言一樣,Python 也包含條件語句。但唯一的差別是,我們有 elif,而不是 else if。
條件語句根據特定條件控製程式的流程。它們透過允許程式根據條件評估為 True 或 False 執行不同的程式碼區塊來實現決策。
我們不再單獨解釋if、elif 和else 和
if a%2==0: print("The Number is an Even Composite") elif not_prime(a): print("The Number is an Odd Composite") else: print("The Number is a Prime")
和
else
和else 🎜> 讓我們來介紹它們所有這些都在一個例子中。
這裡,讓數字為 3。
首先程式會檢查數字是否能被2整除(如果a%2==0)
因為它不是偶數,所以它轉到 elif 語句(if not_prime(a))
由於
if
age=19 if age>18 and age<25: print("the person is an Young Adult")
部分,它將列印:
age = 20 if age >= 18: if age < 25: print("You are a young adult.") else: print("You are an adult.") else: print("You are not an adult yet.")這個數字是素數
bob_score=87 alen_score=92 answer=bob_score if bob_score>alen_score else alen_score print(answer)主要特點:
1. 條件邏輯運算符
您可以將條件語句嵌套在一起以評估複雜的條件。
答案:
92
startswith()和endswith()是傳回字串的方法
如果指定的字串以指定的開頭或結尾,則為 True
值。
listl = ['lemon','Orange','apple', 'apricot'] new_list = [i for i in listl if i.startswith('a')] pri nt(new_li st)
以下是如何使用startswith()來實現這一點。
listl = ['lemon','Orange','apple', 'apricot'] new_list = [i for i in listl if i.endswith('e')]] pri nt(new_li st)
答案:
使用 endwith():
循環
a=[1,2,3,4] for i in a: print(a)
1。同時
2.對於
1.For循環:
Python 中的 for 迴圈迭代序列(例如清單、元組、字串或範圍)並對該序列中的每個項目執行操作。
if a%2==0: print("The Number is an Even Composite") elif not_prime(a): print("The Number is an Odd Composite") else: print("The Number is a Prime")
答案: 0n 1 n 2n 3n
範圍():
range() 函數的基本語法是:
age=19 if age>18 and age<25: print("the person is an Young Adult")
這裡預設start=0,step=1。
age = 20 if age >= 18: if age < 25: print("You are a young adult.") else: print("You are an adult.") else: print("You are not an adult yet.")
答案:1n 2n
1n 3n
只要條件計算結果為 True,while 迴圈就會繼續執行程式碼區塊。
bob_score=87 alen_score=92 answer=bob_score if bob_score>alen_score else alen_score print(answer)
答案: 4n 3n 2n 1n
break 語句用於提前終止循環,無論其條件為何。一旦執行了break語句,控制就退出迴圈。
listl = ['lemon','Orange','apple', 'apricot'] new_list = [i for i in listl if i.startswith('a')] pri nt(new_li st)
答案: 10n 9n 8n 7n 6n
continue 語句用於跳過目前迭代中的其餘程式碼並繼續循環的下一個迭代。
listl = ['lemon','Orange','apple', 'apricot'] new_list = [i for i in listl if i.endswith('e')]] pri nt(new_li st)
答案: 1n 3n 5n 7n 9n
pass 語句是一個佔位符,當語法上需要一段程式碼但您不想執行任何程式碼時使用。它實際上什麼也沒做。
a=[1,2,3,4] for i in a: print(a)
答案: 0n 1n 2n 4n
以上是掌握條件語句和循環的藝術日的詳細內容。更多資訊請關注PHP中文網其他相關文章!