您当前的位置:首页 > 计算机 > 编程开发 > Python

Python把嵌套的字符串列表转换为整数列表的两种方法

时间:12-25来源:作者:点击数:

假设有如下嵌套的字符串列表:

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

              ['4', '5', '6'],

              ['7', '8', '9']]

现要求将其转换为嵌套的整数列表。

方法一(循环,内置函数,函数式编程):

for index, item in enumerate(testMatrix):

    testMatrix[index] = list(map(int, item))

方法二(函数式编程,借助于扩展库numpy):

import numpy as np

testMatrix = list(map(list, np.int64(testMatrix)))

上面两种方法的转换结果均为:

[[1, 2, 3], [4, 5, 6], [7, 8, 9]]

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门