python學習(2) 分支語句

2021-10-10 11:37:28 字數 1055 閱讀 7381

python學習(1)- 變數  

1.%的展示

num = input('輸入數字')

print('%s%%'%num) #10%

print("{}%".format(num)) #10%

2.分支語句 if elif else

num = int(input("數字"))

if (num > 10):

print("數字大於10")

elif (num > 5):

print("數字大於5,小於等於10")

else:

print("數字小於等於5")

#邏輯運算子 and並且(&&), or或者(||), not反(!)

age = int(input("年齡"))

money = int(input("金額"))

if age>=18 and money >10: #if not age > 18:

print("我是高富帥")

else:

print("屌絲")

#計算year = int(input("輸入年份"))

if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):

print("是閏年")

else:

print("不是閏年")

#巢狀*** = input("輸入性別")

money = int(input("多少錢"))

if(*** == "男"):

if(money > 1000):

print("有錢")

else:

print("窮鬼")

else:

print("是女的")

import random #python 官方api

num = random.randint(1,10) #隨機整數 從1開始 到10

print(num)

python學習(3)- 迴圈語句和列表

Python複習 學習2 分支結構

fine,我們來看一下分支結構 好吧,看了一下問題不大,主要還是書寫時的規範問題。在python中,if else語句是不用帶括號的 相比c來說 但是要帶乙個冒號,包括else 不知為何我else後的冒號老忘 具體就是這樣 a 1 if a 1 print amazing elif a 2 prin...

python學習筆記03 分支 迴圈語句

目錄 1 分支語句 2 注釋語句 3 迴圈語句 3.1 for 迴圈與 range語句 3.2 while語句 3.3 迴圈退出語句 4 示例 4.1 累加計算 4.2 階乘計算 4.3 模擬登入功能 5 小結 計算機有很強的邏輯判斷能力,但是這些邏輯建立在編寫程式的人明確告訴計算機判斷條件是什麼,...

6 分支語句

關鍵字 if語句分析 switch語句分析 if condition else bool b true if b else 2 變數和0值進行比較時,0值應該出現在比較符號的左邊 int i 1 if 0 i else 3 float型變數不能直接進行0值比較,需要定義精度 define epsin...