Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
380 views
in Technique[技术] by (71.8m points)

python - 如何检查变量是否存在?(How do I check if a variable exists?)

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

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

1 Reply

0 votes
by (71.8m points)

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.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...