python tuple转array
时间: 2023-09-04 21:12:57 浏览: 97
将 Python 的元组转换为数组可以使用 numpy 库中的 array 函数,示例代码如下:
```
import numpy as np
# 定义一个元组
tup = (1, 2, 3, 4)
# 转换为数组
arr = np.array(tup)
print(arr)
```
输出:
```
[1 2 3 4]
```
相关问题
python tuple数据转成array
可以使用numpy库将Python tuple数据转换成array,具体操作如下:
```python
import numpy as np
# 定义一个tuple
t = (1, 2, 3, 4)
# 将tuple转成array
a = np.array(t)
print(a)
```
输出:
```
[1 2 3 4]
```
另外,如果tuple中包含多个元素,每个元素又是一个tuple,可以使用下面的方式将其转换为array:
```python
t = ((1, 2), (3, 4), (5, 6))
a = np.array(t)
print(a)
```
输出:
```
[[1 2]
[3 4]
[5 6]]
```
python array转tuple
要将Python中的数组(array)转换为元组(tuple),使用内置的tuple()函数。以下是将数组转换为元组的示例代码:
```python
import numpy as np
my_array = np.array([1, 2, 3, 4, 5])
my_tuple = tuple(my_array)
print(my_tuple)
```
在上述代码中,首先导入NumPy库,并创建一个数组my_array。然后,使用tuple()函数将数组转换为元组,并将结果存储在变量my_tuple中。最后,使用print语句打印出转换后的元组。
运行上述代码,将得到输出结果:
```
(1, 2, 3, 4, 5)
```
现在,你已经成功将数组转换为元组。
阅读全文