python中keyerror是什么意思 python keyerror什么意思

主机教程 建站分享 2年前 (2022-12-15) 185次浏览

文章摘要:python中keyerror是什么意思 python keyerror什么意思

python中keyerror指的是你在使用字典里不存在的key产生的错误,能够使用字典的dict.get方法 […]

python中keyerror指的是你在使用字典里不存在的key产生的错误,能够使用字典的dict.get方法来解决,该方法主要是实现让取不到对应key的value返回默认值,从而避免出错。

具体使用方法:

1、首先打开python编辑器,新建一个python项目。

2、在python项目中定义一个字典。

dict = {'Name': 'yisu', 'Age': 27}

3、在通过dict.get方法避免出现keyerror错误。

print ("Age 值为 : %s" % dict.get('Age'))

print ("Sex 值为 : %s" % dict.get('Sex', "NA"))

完整实例代码:

#!/usr/bin/python3

dict = {'Name': 'yisu', 'Age': 27}

print ("Age 值为 : %s" % dict.get('Age'))

print ("Sex 值为 : %s" % dict.get('Sex', "NA"))

输出结果:

Age 值为 : 27

Sex 值为 : NA


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

喜欢 (0)