字典中的成员判断

innot in在字典中的用法

  • 只能判断key是否存在

get用于判断成员存在

  • bool(test_dict.get('name'))
  • 字典中的类型可能为False类型有待商榷

代码