探索 Python,第 9 部分: 化零为整
2008-09-30 12:59:07 来源:WEB开发网模块库
使用 Python 编程语言的一个主要好处就是大型的内置式标准库,可作为 Python 模块访问。常用模块示例如下:
math 包含有用的数学函数。
sys 包含用于与 Python 解释器交互的数据和方法。
array 包含数组数据类型和相关函数。
datetime 包含有用的日期和时间处理函数。
由于这些都是内置模块,因此您可以通过帮助解释器来了解更多相关内容,如清单 7 所示。
清单 7. 获得关于 math 模块的帮助信息
>>> help(math)
Traceback (most recent call last):
File "<stdin>", line 1, in ?
NameError: name 'math' is not defined
>>> import math # Need to import math module in order to use it
>>> help(math)
Help on module math:
NAME
math
FILE
/System/Library/Frameworks/Python.framework/Versions/2.4/lib/
python2.4/lib-dynload/math.so
DESCRIPTION
This module is always available. It provides access to the
mathematical functions defined by the C standard.
FUNCTIONS
acos(...)
acos(x)
Return the arc cosine (measured in radians) of x.
asin(...)
asin(x)
Return the arc sine (measured in radians) of x.
...
math 模块的帮助输出展示了所支持的大量数学函数,包括 sqrt 函数在内。您可以利用此函数将您的样本方差计算转换为样本标准差计算,如清单 8 所示。
更多精彩
赞助商链接