python 如何将列表数字转为int
时间: 2023-06-19 19:06:26 浏览: 157
Python将list中的string批量转化成int/float的方法
在 Python 中,可以使用内置函数 `int()` 将列表中的字符串型数字转换为整型。具体操作如下:
```python
# 定义一个包含字符串型数字的列表
str_list = ['1', '2', '3', '4', '5']
# 将列表中所有字符串型数字转换为整型
int_list = [int(x) for x in str_list]
# 打印转换后的结果
print(int_list)
```
输出:
```
[1, 2, 3, 4, 5]
```
其中,`int(x)` 将字符串型数字 `x` 转换为整型。通过列表推导式,可以快速将列表中的所有字符串型数字转换为整型,并返回一个新的整型列表。
阅读全文