您现在的位置是:课程教程文章

python如何查找是否存在某个变量?

2023-12-18 18:58课程教程文章 人已围观

python中可以使用locals()、dir()、vars()等函数来查询变量是否存在。

  • locals() 函数会以字典类型返回当前位置的全部局部变量。

  • dir() 函数不带参数时,返回当前范围内的变量、方法和定义的类型列表;带参数时,返回参数的属性、方法列表。

  • vars() 函数返回对象object的属性和属性值的字典对象。

示例:

res1 = 'test' in locals().keys()
res2 = 'test' in dir()
res3 = 'test' in vars().keys()
print(res1,res2,res3)  # 变量test暂时还没有定义,返回False
test = ""  # 定义变量test
res4 = 'test' in locals().keys()
res5 = 'test' in dir()
res6 = 'test' in vars().keys()
print(res4,res5,res6)  # 变量test已经被定义了,返回True

更多Python知识请关注Python视频教程栏目。

课程教程:python如何查找是否存在某个变量?

上一篇:python如何看变量属性

下一篇:没有了

站点信息

  • 文章统计篇文章