• 技术文章 >Python技术 >Python基础教程

    dir()函数在python模块的使用

    小妮浅浅小妮浅浅2021-05-28 09:47:52原创3298

    1、说明

    内建函数dir()可以找到在模块中定义的所有名称,并作为字符串列表返回。

    如果没有给定参数,dir()函数罗列当前定义的所有名称。

    2、实例

    import Titan
     
    print(dir(Titan))
     
    # 输出结果:
    ['__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'age', 'name', 'sayBad', 'sayGood', 'sayNice']
     
     
    print(dir())
    # 输出结果:
    ['Titan', '__annotations__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__']
     
     
    # 这里定义一个新的变量
    sum = 30
    print(dir())
    # 输出结果:
    ['Titan', '__annotations__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', 'sum']
     
     
    # 把定义的变量删除后
    del sum
    print(dir())
    # 输出结果:
    ['Titan', '__annotations__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__']

    以上就是dir()函数在python模块的使用,希望对大家有所帮助。更多Python学习指路:python基础教程

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    专题推荐:python dir函数
    上一篇:python中__name__调用模块 下一篇:python可变参数的使用注意

    相关文章推荐

    • python中dir什么作用• python3代码之怎样用dir查看对象属性?• 如何快速掌握python dir函数用法?• python中dir函数如何使用?• python redirect函数怎么用?• python os.listdir()解决乱码

    全部评论我要评论

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

  • 取消发布评论
  • 

    Python学习网