Python學習筆記 if語句以及邏輯運算子

2021-08-20 02:31:46 字數 830 閱讀 2062

1--if語句定義

。--if語句下的縮排**塊部分是屬於if的

--else同上

。--if和else語句以及各自的縮排部分是乙個完整的**塊

2--if語句格式:

if 條件 :

#內容1

#內容2

if 條件 :

#內容1

#內容2

elif

#內容1

#內容2

elif

#內容1

#內容2

else:

#內容3--拓展----增加換行調整條件判斷**格式:

if ( (條件1)

or(條件2)

or(條件3)

or(條件4)):

#內容1

#內容2

練習:age = int(input("請輸入年齡"))

if age >= 18 :

print("你已經成年,歡迎來到網咖")

else

print("你還沒有成年,請回家寫作業吧")

print("這句**什麼時候執行")

age =int(input("請輸入年齡"))

if age >= 0 and age <= 120 :

print("年齡正確")

print("

年齡不正確")

4--邏輯運算子

。--python中的 邏輯運算子包括:與and/或or/非not 三種

--and 並且  兩個條件都成立,返回ture

--or  或者  兩個只要有乙個成立,返回ture

--not 將乙個條件進行取反

Python學習筆記 continue語句

python中continue語句用於跳出本次迴圈,break語句是跳出整個迴圈。continue語句告訴python語言跳出本次迴圈中剩下的語句,執行下一輪迴圈.continue迴圈也用於for迴圈和while迴圈.usr bin python coding utf 8 for letter in...

python學習筆記之語句

if else 語句 若有多個條件需要判斷時 用if elif elif else 注意由於 python 並不支援 switch 語句,所以多個條件判斷,只能用 elif 來實現,如果判斷需要多個條件需同時判斷時,可以使用 or 或 表示兩個條件有乙個成立時判斷條件成功 使用 and 與 時,表示...

Python學習筆記 (三)if語句

乙個簡單的if else條件判斷,要注意if和else後面別忘了加冒號。animal cat if animal cat print it is a cat else print it isnot a cat 使用關鍵字and將兩個條件測試合併來表示與的關係。age 18 if age 16 and...