python判断字典中key是否存在

python学习网 2019-12-12 15:07:02

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


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

 

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

阅读(2261) 评论(0)