python判断字典中key是否存在,


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


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

 

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

相关内容

    暂无相关文章

评论关闭