Python字典dict用法
xiaoming_dict = {"name": "小明"}
# 1.取值
print(xiaoming_dict["name"]) # 輸出小明的名字
# 2.增加/修改
xiaoming_dict["age"] = 18 # 增加
xiaoming_dict["name"] = "小華" # 修改
print(xiaoming_dict)
# 3.刪除
xiaoming_dict.pop("name") # 刪除指定元素
print(xiaoming_dict)
# 4.統計鍵值對的數量
xiaoming_len = len(xiaoming_dict)
print(xiaoming_len)
# 5.合併字典
temp_dict = {"height": 1.75,
"age": 20}
xiaoming_dict.update(temp_dict) # 如果有重複會覆蓋原有的鍵值對
print(xiaoming_dict)
# 6.清空字典
xiaoming_dict.clear()
print(xiaoming_dict)
# 7.迭代遍歷輸出字典
for k in xiaoming_dict: # k是每次迴圈中獲得的鍵值對的key
print("%s - %s" % (k, xiaoming_dict[k]))
輸出:
小明
{‘name’: ‘小華’, ‘age’: 18}
{‘age’: 18}
1
{‘age’: 20, ‘height’: 1.75}
{}
相關文章
- Python dict(字典)Python
- Python中字典dictPython
- python--字典dictPython
- Python Dict用法Python
- dict字典常用操作(python)Python
- python字典dict操作方法Python
- python之字典(dict)基礎篇Python
- python 中字典dict如何新增元素?Python
- Python - 基礎資料型別 dict 字典Python資料型別
- python基礎之字典dict和集合setPython
- dict(字典)的常用方法
- Python 字典 dict 獲取索引 轉化為 listPython索引
- python內建物件型別(四)序列之dict字典Python物件型別
- Python中字典dict的11種不同操作方法Python
- Python字典的高階用法Python
- 【Python從入門到精通】(七)Python字典(dict)讓人人都Python
- python 字典和列表巢狀用法Python巢狀
- Python程式設計:Counter計數器-dict字典的子類Python程式設計
- Python零基礎學習筆記(二十一)——dict字典Python筆記
- 深入理解 Python 虛擬機器:字典(dict)的最佳化Python虛擬機
- Python匯入Excel表格資料並以字典dict格式儲存PythonExcel
- [Redis原始碼閱讀]dict字典的實現Redis原始碼
- python存取dictPython
- 總結十個Python 字典用法的使用技巧Python
- 【檢視】oracle 資料字典檢視之 DICT / DICTIONARYOracle
- 【VIEW】Oracle資料字典檢視之DICT_COLUMNSViewOracle
- Python中的dictPython
- python dict{}和set([])Python
- Python中基礎資料型別(List、Tuple、Dict)的概念和用法Python資料型別
- Python基礎:dict & setPython
- python中dict詳解Python
- Python之dict的妙用Python
- Python--關於dictPython
- Redis資料結構詳解(2)-redis中的字典dictRedis資料結構
- Python list,dict問題解答Python
- 小白學python系列-(8)dictPython
- python str dict list 轉換Python
- Python 原始碼閱讀——dictPython原始碼