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
- dict字典常用操作(python)Python
- python字典dict操作方法Python
- 字典dict
- python 中字典dict如何新增元素?Python
- python之字典(dict)基礎篇Python
- Python - 基礎資料型別 dict 字典Python資料型別
- Python 字典 dict 獲取索引 轉化為 listPython索引
- day05 字典 dict
- dict(字典)的常用方法
- Python字典的高階用法Python
- 【Python從入門到精通】(七)Python字典(dict)讓人人都Python
- Python中字典dict的11種不同操作方法Python
- python內建物件型別(四)序列之dict字典Python物件型別
- python 字典和列表巢狀用法Python巢狀
- Python程式設計:Counter計數器-dict字典的子類Python程式設計
- Python零基礎學習筆記(二十一)——dict字典Python筆記
- 深入理解 Python 虛擬機器:字典(dict)的最佳化Python虛擬機
- Python匯入Excel表格資料並以字典dict格式儲存PythonExcel
- 總結十個Python 字典用法的使用技巧Python
- python存取dictPython
- [Redis原始碼閱讀]dict字典的實現Redis原始碼
- Python中基礎資料型別(List、Tuple、Dict)的概念和用法Python資料型別
- Python中的dictPython
- python中dict詳解Python
- Python基礎:dict & setPython
- Redis資料結構詳解(2)-redis中的字典dictRedis資料結構
- Python中的基礎資料型別(List,Tuple,Dict)及其常用用法簡析Python資料型別
- 小白學python系列-(8)dictPython
- Python list,dict問題解答Python
- Python __dict__屬性:檢視物件內部所有屬性名和屬性值組成的字典Python物件
- python-字典Python
- 草根學Python(四) Dict 和 SetPython
- Python 的List 和tuple,Dict,SetPython
- 【廖雪峰python入門筆記】dictPython筆記
- 7.Python3原始碼—Dict物件Python原始碼物件
- python dict實現的魔法方法Python