修改字典項 您可以通過引用其鍵名來更改特定項的值: 示例,將 "year" 更改為 2018: thisdict = { "brand": "Ford", "model": "Mustang", "year": 1964 } thisdict["year"] = 2018 更新字典 update() ...
修改字典項
您可以通過引用其鍵名來更改特定項的值:
示例,將 "year" 更改為 2018:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict["year"] = 2018
更新字典
update()
方法將使用給定參數中的項來更新字典。
參數必須是一個字典,或具有鍵值對的可迭代對象。
示例,使用 update()
方法來更新車輛的 "year":
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict.update({"year": 2020})
Python - 添加字典項
通過使用新的索引鍵併為其分配一個值,可以向字典中添加項:
示例,向字典中添加一個項目:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict["color"] = "red"
print(thisdict)
更新字典
update()
方法將使用給定參數中的項來更新字典。如果該項不存在,則會添加該項。
參數必須是一個字典,或具有鍵值對的可迭代對象。
示例,使用 update()
方法向字典中添加顏色項:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict.update({"color": "red"})
Python - 刪除字典項
有幾種方法可以從字典中刪除項:
示例,pop()
方法會刪除具有指定鍵名的項:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict.pop("model")
print(thisdict)
示例,popitem()
方法將刪除最後插入的項(在 3.7 之前的版本中,將刪除一個隨機項):
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict.popitem()
print(thisdict)
示例,del
關鍵字會刪除具有指定鍵名的項:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
del thisdict["model"]
print(thisdict)
示例,del
關鍵字還可以完全刪除字典:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
del thisdict
print(thisdict) #這將導致錯誤,因為 "thisdict" 不再存在。
示例,clear()
方法會清空字典:
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict.clear()
print(thisdict)
Python - 迴圈遍歷字典
您可以使用 for
迴圈遍歷字典。在迴圈字典時,返回值是字典的鍵,但也有方法可以返回值。
示例,逐個列印字典中的所有鍵名:
for x in thisdict:
print(x)
示例,逐個列印字典中的所有值:
for x in thisdict:
print(thisdict[x])
示例,您還可以使用 values()
方法返回字典的值:
for x in thisdict.values():
print(x)
示例,您可以使用 keys()
方法返回字典的鍵:
for x in thisdict.keys():
print(x)
示例,通過使用 items()
方法,可以同時迴圈遍歷鍵和值:
for x, y in thisdict.items():
print(x, y)
最後
為了方便其他設備和平臺的小伙伴觀看往期文章,鏈接奉上:
公眾號搜索Let us Coding
,阿裡開發者社區,InfoQ,CSDN,騰訊開發者社區,思否,51CTO,掘金,helloworld,慕課,博客園
看完如果覺得有幫助,歡迎點贊、收藏和關註