例:#生成一个字典d = {'title':'abc','age':18}
if 'title' in d.keys(): print('存在')else: print('不存在')
if 'title' not in d.keys(): print('不存在')else: print('存在')