列表常遇到的几个问题:
1、列表元素有非数字的字符串
2、列表元素有数字为字符串类型
如何将列表元素为""的替换为0,列表字符转换为数值可用以下三种方法:循环、列表生成式、numpy(推荐)
二维数组建议用Numpy
方法1:循环方法
num_list =['13', '', '', '', '6', '0']
l=[]
for i in num_list:
if i =="":
l.append(0)
else:
l.append(i)
方法2:列表生成式方法
num_list =['13', '', '', '', '6', '0']
new_list = [0 if i =="" else i for i in num_list]
new_list
字符串转为数值
num_list_new = list(map(lambda x : int(x),new_list))
方法3:numpy
对于numpy一维二维操作都一样
一维列表
import numpy as np
s=['13', '', '', '', '6', '0']
a = np.array(s)
a[a==""]=0
输出
['13' '0' '0' '0' '6' '0']
字符转为数值astype
a =list( a.astype("int")) # 或a.astype( np.uint8 )
# 或a = a.astype("int").tolist()
输出
[13, 0, 0, 0, 6, 0]
二维列表
import numpy as np
s=[['4', '4', '1', '0', '25', '0'], ['13', '', '', '', '6', '0'], ['4', '2', '0', '', '17', '1']]
a = np.array(s)
a[a==""]=0
输出文章来源:https://www.toymoban.com/news/detail-541752.html
[['4' '4' '1' '0' '25' '0']
['13' '0' '0' '0' '6' '0']
['4' '2' '0' '0' '17' '1']]
字符转为数值astype
s=[['4', '4', '1', '0', '25', '0'], ['13', '', '', '', '6', '0'], ['4', '2', '0', '', '17', '1']]
a = np.array(s)
a[a==""]=0
a =a.astype("int").tolist() # a.astype( np.uint8 )
输出文章来源地址https://www.toymoban.com/news/detail-541752.html
[[4, 4, 1, 0, 25, 0], [13, 0, 0, 0, 6, 0], [4, 2, 0, 0, 17, 1]]
到了这里,关于Python列表字符转为数值的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!