溫馨提示×

python字典怎么根據(jù)鍵找值

小億
167
2023-12-16 19:09:45
欄目: 編程語言

在Python中,可以使用字典的get()方法根據(jù)鍵找到對應(yīng)的值。get()方法的語法如下:

dictionary.get(key)

其中,dictionary是要查詢的字典,key是要查找的鍵。如果字典中存在該鍵,則get()方法會(huì)返回對應(yīng)的值;如果字典中不存在該鍵,則返回None(或者可以在get()方法中指定一個(gè)默認(rèn)值)。

下面是一個(gè)使用get()方法根據(jù)鍵找值的示例:

# 創(chuàng)建一個(gè)字典
dictionary = {'a': 1, 'b': 2, 'c': 3}

# 使用get()方法根據(jù)鍵找值
value = dictionary.get('b')
print(value)  # 輸出:2

# 使用get()方法獲取一個(gè)不存在的鍵
value = dictionary.get('d')
print(value)  # 輸出:None

# 使用get()方法獲取一個(gè)不存在的鍵,指定默認(rèn)值
value = dictionary.get('d', 'Key not found')
print(value)  # 輸出:Key not found

另外,還可以使用字典的索引操作符[]來根據(jù)鍵找值。如果鍵存在,則返回對應(yīng)的值;如果鍵不存在,則會(huì)拋出KeyError異常。

下面是一個(gè)使用索引操作符根據(jù)鍵找值的示例:

# 創(chuàng)建一個(gè)字典
dictionary = {'a': 1, 'b': 2, 'c': 3}

# 使用索引操作符根據(jù)鍵找值
value = dictionary['b']
print(value)  # 輸出:2

# 使用索引操作符獲取一個(gè)不存在的鍵,拋出異常
value = dictionary['d']  # KeyError: 'd'

需要注意的是,使用索引操作符時(shí),如果鍵不存在會(huì)拋出KeyError異常,而使用get()方法時(shí),如果鍵不存在會(huì)返回None(或者指定的默認(rèn)值)。因此,如果不確定鍵是否存在,推薦使用get()方法來查找值。

0