語法:
if 要判斷的條件:
條件成立時,要做的事情
else:
條件不成立時,要做的事情
【注】**縮排建議用4個空格,不要用tab鍵,不能混用
語法:
if 條件1:
條件1滿足執行的**
elif 條件2:
條件2滿足執行的**
elif 條件3:
條件3滿足執行的**
else:
以上條件都不滿足執行的**
語法:
if 條件1:
條件1成立時,要做的事情 ..
...if 條件1基礎上的條件2:
條件2成立時,要做的事情
else:
條件2不成立時,要做的事情
else:
條件1不成立時,要做的事情
and/or/not語法:條件1 and 條件2
語法:條件1 or 條件2
語法:not 條件
開發中,希望某個條件不滿足時執行一些**,可以用not
另外,如果需要拼接複雜的邏輯計算條件,也可以使用not
邏輯運算 條件語句 迴圈語句
case1 case2 default include include include int add int int lhs,int rhs int main int argc,char argv 只有一條語句屬於這個if,如果有多條,加上大括號 if c 0 printf helloworld ...
Python學習筆記 if語句以及邏輯運算子
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 if else表單一條件判斷,else後不用加上條件 guess int input please input a number 如果輸入9即顯示正確,輸入其他數字則顯示錯誤 if guess 9 print right else print wrong 2 用if elif elif else...