为了账号安全,请及时绑定邮箱和手机立即绑定

将列表中的所有字符串转换为int

将列表中的所有字符串转换为int

慕斯王 2019-06-23 15:52:56
将列表中的所有字符串转换为int在Python中,我希望将列表中的所有字符串转换为整数。所以如果我有:results = ['1', '2', '3']我该怎么做?results = [1, 2, 3]
查看完整描述

3 回答

?
catspeake

TA贡献1111条经验 获得超0个赞

列表理解:

results = [int(i) for i in results]

G.

>>> results = ["1", "2", "3"]
>>> results = [int(i) for i in results]
>>> results
[1, 2, 3]


查看完整回答
反对 回复 2019-06-23
?
慕运维8079593

TA贡献1876条经验 获得超5个赞

比清单理解范围更广一些,但同样有用:

def str_list_to_int_list(str_list):
    n = 0
    while n < len(str_list):
        str_list[n] = int(str_list[n])
        n += 1
    return(str_list)

G.

>>> results = ["1", "2", "3"]
>>> str_list_to_int_list(results)
[1, 2, 3]

此外:

def str_list_to_int_list(str_list):
    int_list = [int(n) for n in str_list]
    return int_list


查看完整回答
反对 回复 2019-06-23
  • 3 回答
  • 0 关注
  • 2814 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信