python tuple转array
时间: 2023-09-04 07:12:57 浏览: 91
Python 把序列转换为元组的函数tuple方法
将 Python 的元组转换为数组可以使用 numpy 库中的 array 函数,示例代码如下:
```
import numpy as np
# 定义一个元组
tup = (1, 2, 3, 4)
# 转换为数组
arr = np.array(tup)
print(arr)
```
输出:
```
[1 2 3 4]
```
阅读全文