python判断字典中key是否存在

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


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

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

猜你喜欢

转载自www.cnblogs.com/WebLinuxStudy/p/12024666.html