点击查看代码
# dict_name.get(key, default=None),
# 字典的get()方法,返回指定键的值。如果不存在key,则字典中返回默认值"default"中的值
# default: 要返回key的值,可以是任何值,如整形、字符串、列表、字典等
dict = {'A': 1, 'B': 2, 'C': 3}
print("Value : %s" % dict.get('A'))
print("Value : %s" % dict.get('B'))
print("Value : %s" % dict.get('C', 0))
print("Value : %s" % dict.get('D', 0))
print("Value : %s" % dict.get('D', -1))
print("Value : %c" % dict.get('123', default=None))
# output
# Value : 1
# Value : 2
# Value : 3
# Value : 0
# Value : -1
# (此处是一大段空格,因为返回None)