python判断键在不在字典里
推荐
在线提问>>
python3中采用in方法
#判断字典中某个键是否存在
arr={"int":"整数","float":"浮点","str":"字符串","list":"列表","tuple":"元组","dict":"字典","set":"集合"}
#使用in方法
if"int"inarr:
print("存在")
if"float"inarr.keys():
print("存在")
#判断键不存在
if"floats"notinarr:
print("不存在")
if"floats"notinarr:
print("不存在")
python3中不支持has_key(),python2中支持
#判断字典中某个键是否存在
arr={"int":"整数","float":"浮点","str":"字符串","list":"列表","tuple":"元组","dict":"字典","set":"集合"}
#使用自带的has_key()
if(arr.has_key("int")):
print("存在")
以上内容为大家介绍了python培训之判断键在不在字典里,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。