5. 标准库模块
什么是标准库模块
python 中有二百多个已经写好的模块,这个模块会在安装python的时候直接被安装。且可以直接使用import 语句导入并使用。
标准库模块官方网址:
https://docs.python.org/zh-cn/3/library/index.html
示例
>>> import math
>>> math.pi
3.141592653589793
>>> math.e
2.718281828459045
>>> math.sin(math.pi / 4) # 求 sin(45度)
0.7071067811865475
>>> import random
>>> random.randint(1, 6)
4
>>> random.randint(1, 6)
5
>>> random.randint(1, 6)
1
>>>