• 技术文章 >常见问题 >Python常见问题

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

    yangyang2020-05-07 16:04:46原创3601

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

    示例:

    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脚本中有乱码怎么解决 下一篇:python如何看变量属性

    相关文章推荐

    • python上注释如何加?• python中的frame是什么意思?• 如何保存python程序所生产的数据?• python字符串不要最后字符怎么做?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网