Python针对众多的类型,提供了众多的内建函数来处理(内建是相对于导入import来说的,后面学习到包package时,将会介绍),
这些内建函数功用在于其往往可对多种类型对象进行类似的操作,即多种类型对象的共有的操作;如果某种操作只对特殊的某一类对象可
行,Python常将其设置为该种类型的方法(method),在后边的内容将会接触到
python中内置了很多函数,这些函数实现了很多的功能。
比如,我们在用math模块,但是不知道这个模块下是否有自己常用的函数,那么如何做呢?
方法一
importmath dir(math)
学习python,尽在python学习网!
首先,我们导入这个模块,使用dir函数,就可以看到,这个模块下都有哪些函数。
['__doc__', '__loader__', '__name__', '__package__', '__spec__', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'ceil', 'copysign', 'cos', 'cosh', 'degrees', 'e', 'erf', 'erfc', 'exp', 'expm1', 'fabs', 'factorial', 'floor', 'fmod', 'frexp', 'fsum', 'gamma', 'gcd', 'hypot', 'inf', 'isclose', 'isfinite', 'isinf', 'isnan', 'ldexp', 'lgamma', 'log', 'log10', 'log1p', 'log2', 'modf', 'nan', 'pi', 'pow', 'radians', 'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'tau', 'trunc']
这种方法是得到一个函数列表,当然,这里还可以使用help函数:
importmath help(math)
importrandom random.__file__原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容