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

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

2023-12-14 22:01课程教程文章 人已围观

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电脑。

课程教程:dir()函数在python模块的使用

上一篇:python中pip如何使用

下一篇:没有了

站点信息

  • 文章统计篇文章