python检查字典元素是否存在类似php中isset()方法

PHP中isset()方法来检查数组元素是否存在,在Python中无对应函数,在Python中一般可以通过异常来处理数组元素不存在的情况,而无须事先检查

Python的编程理念是“包容错误”而不是“严格检查”。举例如下:

代码如下:
dict = {}
try:
  dict['abc']['adv']
  print('存在')
except (IndexError, BaseException):
  print('不存在')

上一篇:Transaction rolled back because it has been marked as rollback-only分析解决方法


下一篇:Python简单遍历字典及删除元素的方法