本文实例讲述了python检测某个变量是否有定义的方法。分享给大家供大家参考。具体如下:
第一种方法使用内置函数locals():
‘testvar’ in locals().keys()
第二种方法使用内置函数dir():
‘testvar’ in dir()
第三种方法使用内置函数vars():
vars().has_key(‘testvar’)
测试如下:
#testvar未定义
In [1]: 'testvar' in locals().keys()
Out[1]: F
本文文章主要介绍了Python内置函数—vars的具体使用方法,分享给大家,具体如下:
英文文档:
vars([object])
Return the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute.Objects such as modules and instances have an updateable __dict__ attribute;