python中get函数怎么用 python get函数

主机教程 建站分享 2年前 (2022-11-19) 187次浏览

文章摘要:python中get函数怎么用 python get函数

在python中使用get函数的方法 get:get()函数的作用是返回指定键的值。 get()函数语法: d […]

在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


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python中get函数怎么用 python get函数
文章链接:http://www.7966.org/post/15330.html
转载请注明出处

喜欢 (0)