dict.get("A", "B") 从字典中获取值的方法

dict.get("A", "B") 从字典中获取值的方法

默认.get()的第二个参数是None,查找字典指定键的值不存在时,就是返回None。如果输入"",就是空字符。

dict = {'Name': 'Zara', 'Age': 27}
 
print "Value : %s" %  dict.get('Age')
print "Value : %s" %  dict.get('Sex', "Never")

结果

Value : 27
Value : Never

参考:

http://www.ziqiangxuetang.com/python/att-dictionary-get.html

你可能感兴趣的:(dict.get("A", "B") 从字典中获取值的方法)