pythonnumpy数组添加元素
时间: 2024-02-02 15:08:40 浏览: 85
python科学计算学习笔记1
在Python的NumPy库中,我们可以使用`numpy.append()`函数向数组的末尾添加元素,使用`numpy.insert()`函数在数组的中间位置添加元素。以下是两个例子:
1. 向数组的末尾添加元素
```python
import numpy as np
arr = np.array([1, 2, 3, 4, 5])
new_element = 6
new_arr = np.append(arr, new_element)
print(new_arr) # 输出:[1 2 3 4 5 6]
```
2. 在数组的中间位置添加元素
```python
import numpy as np
arr = np.array([1, 2, 3, 4, 5])
new_element = 0
new_arr = np.insert(arr, 1, new_element)
print(new_arr) # 输出:[1 0 2 3 4 5]
```
阅读全文