python關於if else 使用

2021-10-21 13:27:23 字數 1205 閱讀 3221

建立乙個陣列,實現陣列的遍歷,基於for和if巢狀實現,需要注意的是,for、if、else語句後一定要有「:」

\n為空一行

print("乙個數,除以三餘

二、除以五餘

三、除以七餘二")

number=[12,34,23,5,9,7]

for shu in number:

if shu%3==2 and shu%5==3 and shu%7==2:

print("當前遍歷數值為:",shu,"滿足除以三餘

二、除以五餘

三、除以七餘二")

else:

print("當前遍歷數值為:",shu,"數值不滿足")

使用者輸入乙個任意數,可直接呼叫input函式 

print("乙個數,除以三餘

二、除以五餘

三、除以七餘二")

shu=int(input("請輸入乙個數字:"))

if shu%3==2 and shu%5==3 and shu%7==2:

print("當前遍歷數值為:",shu,"滿足除以三餘

二、除以五餘

三、除以七餘二")

else:

print("當前遍歷數值為:",shu,"數值不滿足")

多個if和else巢狀

shu=int(input("請輸入乙個數字:"))

if shu >= 0:

if shu > 0:

print("當前數值大於0")

else:

print("當前數值為0")

else:

print("當前為負數")

關於if……elif……else的使用:

shu=int(input("請輸入乙個數字:"))

if shu == 1:

print("當前選項為1")

elif shu == 2:

print("當前選項為2")

elif shu == 3:

print("當前選項為3")

else:

print("當前輸入無法識別")

當使用布林進行判斷時,正確的語法如下,假設變數為a:

if a:

if not a:

python基礎 if else條件語句的使用

小遊戲的if else print 10 歡迎來到消消樂 10 level input 請輸入你的級別 lv1,lv2 if level lv1 print 隨便玩,免費 else print 進入付費級別 money int input 請充值 必須是100的倍數 if money 100 0an...

關於if else語句的寫法

假如現在我們的情況判斷確定只有兩種 當然未來可能會有新的情況 比如 正確和錯誤兩種狀態。我們定義正確的status值為1,錯誤的status值為2。不推薦的 寫法 public static void main string args else 應該這麼寫 public static void ma...

Python條件語句if else

基本語法 python程式語言指定任何非0和非空 null 值為true,0 或者 null為false。python 程式設計中 if 語句用於控制程式的執行,基本形式為 if 判斷條件 執行語句 else 執行語句 其中 判斷條件 成立時 非零 則執行後面的語句,而執行內容可以多行,以縮進來區分...