python tuple创建
时间: 2023-07-24 09:02:55 浏览: 94
python初学list与tuple教程
将 Python 的元组转换为数组可以使用 numpy 库中的 array 函数,示例代码如下:
```
import numpy as np
# 定义一个元组
tup = (1, 2, 3, 4)
# 转换为数组
arr = np.array(tup)
print(arr)
```
输出:
```
[1 2 3 4]
```
阅读全文
python初学list与tuple教程