WebLinuxStudy

导航

 

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


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

 

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

posted on 2019-12-11 19:38  WebLinuxStudy  阅读(11566)  评论(0编辑  收藏  举报