在python中使用get函数的方法
get:get()函数的作用是返回指定键的值。
get()函数语法:
dict.get(key, default=None)
参数:
key:字典中要查找的键。
default:如果指定键的值不存在时,返回该默认值。
get()函数使用方法:
dict = {'Name': 'Runoob', 'Age': 27}
print "Value : %s" % dict.get('Age')
print "Value : %s" % dict.get('Sex', "Never")
输出结果为:
Value : 27
Value : Never
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: Python数组操作中的异常处理方法是什么