pythpn 一维数组转置
时间: 2024-05-03 16:20:56 浏览: 70
Python numpy多维数组实现原理详解
可以使用numpy库中的transpose函数来实现一维数组的转置,例如:
```python
import numpy as np
a = np.array([1, 2, 3, 4, 5])
a_transpose = np.transpose(a)
print(a_transpose)
```
输出结果为:
```
[1 2 3 4 5]
```
阅读全文