To check the existence of a local variable:
(要检查是否存在局部变量:)
if 'myVar' in locals():
# myVar exists.
To check the existence of a global variable:
(要检查是否存在全局变量:)
if 'myVar' in globals():
# myVar exists.
To check if an object has an attribute:
(要检查对象是否具有属性:)
if hasattr(obj, 'attr_name'):
# obj.attr_name exists.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…