Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to check if a variable exists.

(我想检查一个变量是否存在。)

Now I'm doing something like this:

(现在我正在做这样的事情:)

try:
   myVar
except NameError:
   # Do something.

Are there other ways without exceptions?

(是否有其他方法无一例外?)

  ask by Max Frai translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
384 views
Welcome To Ask or Share your Answers For Others

1 Answer

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.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...