如何将tuple转化为数组
时间: 2024-03-27 20:41:15 浏览: 61
python实现将元祖转换成数组的方法
可以使用NumPy库中的`numpy.array()`函数将tuple转化为数组。以下是示例代码:
```python
import numpy as np
my_tuple = (1, 2, 3, 4, 5)
my_array = np.array(my_tuple)
print(my_array)
```
输出:
```
[1 2 3 4 5]
```
注意,转化后的数组和原来的tuple是不可变的,也就是说不能修改数组中的元素。如果需要修改数组元素,可以使用`astype()`方法将数组转化为可变类型。
阅读全文