Python 字典(Dictionary)是一種可變的、無序的、可存儲不同類型數(shù)據(jù)的數(shù)據(jù)結(jié)構(gòu)。字典中的數(shù)據(jù)以鍵值對(key-value pair)的形式存儲,每個鍵與一個值相關(guān)聯(lián)。字典操作可以實現(xiàn)以下功能:
{}
或者 dict()
函數(shù)來創(chuàng)建一個空字典。my_dict = {}
my_dict = dict()
添加鍵值對:可以使用以下方法向字典中添加鍵值對:
dict[key] = value
update()
方法:dict.update(key_value_pairs)
setdefault()
方法:dict.setdefault(key, default_value)
my_dict['a'] = 1
my_dict.update({'b': 2, 'c': 3})
my_dict.setdefault('d', 4)
訪問字典中的值:可以使用以下方法訪問字典中的值:
dict[key]
get()
方法:dict.get(key, default_value)
value = my_dict['a']
value = my_dict.get('b', 0)
update()
方法修改字典中的值。my_dict['a'] = 10
my_dict.update({'a': 20})
del
語句刪除字典中的鍵值對,或者使用 pop()
方法刪除指定鍵的鍵值對。del my_dict['a']
my_dict.pop('b')
in
關(guān)鍵字檢查鍵是否在字典中。if 'a' in my_dict:
print("Key 'a' exists in the dictionary.")
len()
獲取字典中鍵值對的數(shù)量。length = len(my_dict)
for
循環(huán)遍歷字典的鍵、值或者鍵值對。for key in my_dict:
print(key)
for value in my_dict.values():
print(value)
for key, value in my_dict.items():
print(key, value)
keys()
、values()
、items()
、clear()
、copy()
等,用于操作字典。keys = my_dict.keys()
values = my_dict.values()
items = my_dict.items()
my_dict.clear()
my_dict_copy = my_dict.copy()