pythonarray转化为list
时间: 2023-04-27 18:00:09 浏览: 94
Python中的array可以通过tolist()方法转换为list。例如:
```python
import array
arr = array.array('i', [1, 2, 3, 4, 5])
lst = arr.tolist()
print(lst) # [1, 2, 3, 4, 5]
```
其中,'i'表示array中存储的数据类型为整数。如果存储的是其他类型的数据,需要根据实际情况进行修改。
相关问题
python将list转化为array
可以使用numpy库中的"array"函数将list转换为array。
例如:
```python
import numpy as np
my_list = [1, 2, 3]
my_array = np.array(my_list)
```
或者这样:
```python
my_array = np.asarray(my_list)
```
如果你想指定数组的类型,可以在调用array或asarray方法时传入dtype参数,例如:
```python
my_array = np.array(my_list, dtype=np.float32)
```
array 转化为 list
在 Python 中,可以使用 `list()` 函数将数组转换为列表。例如:
```python
array = [1, 2, 3, 4, 5]
list_from_array = list(array)
print(list_from_array) # [1, 2, 3, 4, 5]
```
这将创建一个新列表 `list_from_array`,其元素与给定的数组 `array` 相同。
阅读全文