python判断字典中key是否存在

前端之家收集整理的这篇文章主要介绍了 python判断字典中key是否存在前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

例:#生成一个字典
d = {'title':'abc','age':18}


if 'title' in d.keys():
  print('存在')
else:
  print('不存在')

 

if 'title' not in d.keys():
  print('不存在')
else:
  print('存在')

猜你在找的Python相关文章