立即學習:
1.字典 的值是無序的容器(list是有序的)
字典排序:
for key in sorted(字典名.keys()):
2.字典中的每個元素 key:value 對
key/value 字串,數值均可
3.符號特點
list:[ ]
元組:()
字典:4.字典查詢
列印單一鍵值value:print(字典名[key])
列印子字典單一鍵值value:print(字典名[子字典對應key][key])
5.字典修改賦值
字典名[key] = value
6.字典增加
字典名[new_key] = value
7. 字典刪除
del 字典名[key]
8.遍歷item
for key,value in 字典名.items():
for key in 字典名.keys():
for value in 字典名.values():
05 python條件語句(if)
1.概念 條件語句,即判斷,判斷是否滿足條件,滿足條件即執行某些 不滿足則無法執行某些 2.語法 if 判斷條件 條件成 所執 的 1 條件成 所執 的 2 3.體驗 if true print 我是條件成 執 的 1 print 我是條件成 執 的 2 print 我是 論條件是否成 都要執 的 ...
05 Python的檔案操作
python檔案操作思維導圖 f open test.txt r str f.read 3 print 讀取的資料是 str position f.tell print 當前檔案位置 position str f.read 3 print 讀取的資料是 str position f.tell pri...
05 Python語句與語法
1.i o語句 2.條件控制語句 3.迴圈語句1.i o語句 2.條件控制語句 2.1 if else語句 if a if語句也可單獨存在 exp a 執行表示式 a.else exp b 執行表示式 b.2.2 if elif else語句if a exp a 執行表示式 a.elif b exp...