1. 程式人生 > >Python中字典get方法的使用

Python中字典get方法的使用

get方法是通過鍵來獲取對應的值。如果鍵不存在,會返回預設值None。也可以指定一個查詢失敗的值。


下邊通過例子來說明get方法的使用:

#!/usr/bin/env python
# -*- coding:utf-8 -*-

a = {"Name": "Erich", "City": "BeiJing"}
print(a.get("Name"))  # 獲取鍵對應的值
print(a.get("A"))     # 查詢失敗,返回預設值None
print(a.get("A", "This is not existed"))  # 查詢失敗,返回指定的值

執行結果: