1. math模块提供对浮点数学的底层C库函数的访问,例如:
>>> import math >>> math.cos(math.pi / 4)
2. random模块提供了进行随机选择的工具,例如:
>>> import random >>> random.choice(['apple', 'pear', 'banana'])
3. statistics模块计算数值数据的基本统计属性(均值,中位数,方差等),例如:
>>> import statistics >>> data = [2.75, 1.75, 1.25] >>> statistics.mean(data)