1. 使用`import`语句导入整个`math`模块:
```python
import math
2. 使用`from`语句导入`math`模块中的特定函数或常量:
```python
from math import sqrt, sin, cos
3. 使用`import`语句并给`math`模块指定别名,以便在代码中更简洁地使用:
```python
import math as m
4. 使用`from`语句并给`math`模块中的特定函数或常量指定别名:
```python
from math import sqrt as msqrt, sin as msin
导入`math`模块后,你就可以使用模块中提供的数学函数和常量,例如计算平方根、正弦值等。