在 Python 中,我想将列表中的所有字符串转换为整数。

所以如果我有:

results = ['1', '2', '3']

我怎么做:
results = [1, 2, 3]

最佳答案

使用 map 函数(在 Python 2.x 中):

results = map(int, results)

在 Python 3 中,您需要将结果从 map 转换为列表:
results = list(map(int, results))

关于python - 将列表中的所有字符串转换为 int,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7368789/

10-17 01:16