簡單的 if語句的例子
age =
22if age >=20:
print
('年齡大於20'
)if age !=21:
print
('年齡不等於21'
)if age <=20:
print
('年齡小於20'
)else
:print
('年齡不小了'
)# if elif else 結構
for item in
range(1
,21,2
):if item >=17:
print
('年齡大於17歲'
)elif item<=
15and item >=10:
print
(str
(item)
+'年齡'
)else
:print
(str
(item)
+'這也沒誰了'
)
使用if 語句處理列表
# if 語句處理列表
# 手抓餅配料
ingredients =
['雞蛋'
,'熱狗'
,'雞柳'
,'五花肉'
]# 顧客要求
req =
['雞柳'
,'火腿'
]for item in req:
if item in ingredients:
print
('這個'
+item+
'---免費'
)else
:print
('非常抱歉我們沒有'
+item)
字典與js中的物件類似
# 字典
person0 =
print
(person0[
'name'
])
字典中的簡單操作
# 字典
person0 =
print
(person0[
'name'])
# 字典新增鍵值對
person0[
'hobby']=
'籃球'
print
(person0)
# 修改字典中的值
person0[
'hobby']=
'rap'
print
(person0)
# 刪除字典中的鍵值對
del person0[
'hobby'
]print
(person0)
遍歷字典
# 字典
person0 =
# 遍歷所有的鍵值對
# items() 方法返回的是包含鍵值對的元組列表
print
(person0.items())
for key, value in person0.items():
print
('key:'
+key)
print
('value:'
+str
(value)
)# 遍歷所有的鍵
# keys()方法結果為 字典的鍵的列表
print
(person0.keys())
for key in person0.keys():
print
('key===>'
+key)
# 遍歷字典中的所有的值
# values()方法返回為 字典中的所有的值的列表
print
(person0.values())
for value in person0.values():
print
('value===>'
+str
(value)
)
Python學習筆記 4 if語句和字典
if 語句的格式 if 判斷條件1 執行語句 elif 判斷條件2 執行語句 elif 判斷條件3 執行語句.elif 判斷條件n 執行語句 else 執行語句語句的執行動作 if 和 elif語句後的判斷條件從上到下依次判定,遇到第乙個滿足條件的則進入執行語句執行 執行完畢後無視其他elif 和e...
python語言初級 4 if 語句
程式語言都有三種執行結構 順序結構,分支結構,迴圈結構 今天我學習一下python的if分支結構,分支結構的書寫要求縮排,不然會報錯 1 if結構 str input 輸入乙個整數 n i int str if i 6 print i,大於6 2 if else 結構 str input 輸入乙個整...
Python基礎教程4 if語句
if語句是指程式語言中用來判定所給定的條件是否滿足,根據判定的結果 真或假 決定執行給出的兩種操作之一。if的返回值為真或假,可以用bool型變數進行儲存,占用一位元組。elif和else都必須和if聯合使用,不能單獨使用 1.判斷閏年?使用者輸入年份year,判斷是否為閏年?能被4整除但不能被10...