python numpy库调用
时间: 2023-12-09 07:36:30 浏览: 127
python numpy库的使用 python基础,演示了numpy库的使用,提供python2例程代码,适合初学者
以下是使用Python中的numpy库的基本步骤:
1.安装numpy库
使用pip命令安装numpy库,命令如下:
```shell
pip install numpy
```
2.导入numpy库
在Python代码中导入numpy库,一般使用“np”作为该模块的简写,代码如下:
```python
import numpy as np
```
3.使用numpy库
使用numpy库进行数组的创建、运算等操作,以下是一个简单的例子:
```python
import numpy as np
# 创建一个一维数组
arr1 = np.array([1, 2, 3, 4, 5])
print(arr1)
# 创建一个二维数组
arr2 = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
print(arr2)
# 数组的运算
arr3 = np.array([1, 2, 3])
arr4 = np.array([4, 5, 6])
print(arr3 + arr4)
```
输出结果如下:
```
[1 2 3 4 5]
[[1 2 3]
[4 5 6]
[7 8 9]]
[5 7 9]
```
阅读全文