python 中as的用法
时间: 2023-09-30 14:05:03 浏览: 106
python中assert的用法(简洁明了)
在 Python 中,`as` 关键字通常用于给导入的模块、包或其中的对象起一个别名。以下是几个用法示例:
1. 给模块起别名:
```python
import numpy as np
# 使用别名 np 代替模块名 numpy
a = np.array([1, 2, 3])
```
2. 给包内的模块起别名:
```python
from sklearn import linear_model as lm
# 使用别名 lm 代替 linear_model
model = lm.LinearRegression()
```
3. 给函数、类等对象起别名:
```python
from sklearn.linear_model import LinearRegression as LR
# 使用别名 LR 代替 LinearRegression
model = LR()
```
4. 给异常类起别名:
```python
from sklearn.exceptions import ConvergenceWarning as CW
# 使用别名 CW 代替 ConvergenceWarning
warnings.filterwarnings("ignore", category=CW)
```
总之,`as` 关键字可以让代码更加易读,避免命名冲突,提高代码的可维护性。
阅读全文