list 转换成Integer数组
时间: 2023-07-13 11:30:04 浏览: 109
list转数组.txt
可以使用Python的内置函数`map()`和`int()`来实现将列表转换为整数数组。示例代码如下:
```python
my_list = ['1', '2', '3', '4', '5']
my_array = list(map(int, my_list))
print(my_array)
```
输出结果:
```
[1, 2, 3, 4, 5]
```
其中,`map()`函数将`my_list`中的每个元素应用到`int()`函数中,将其转换为整数类型,然后使用`list()`函数将其转换为整数数组。
阅读全文