哈比特个鬼 发表于 2021-1-26 17:10:38

列表内所有数字求和

list4可以正常输出print,想对list4内所有的数进行求和,再求平均
错误如下:
TypeError: unsupported operand type(s) for +: 'int' and 'list'


import codecs
import numpy as np
f = codecs.open(r'C:\Users\dukang\Desktop\polymertworatio\9:1\membrane.txt', mode='r', encoding='utf-8')# 打开txt文件,以‘utf-8'编码读取
line = f.readline()# 以行的形式进行读取文件

list4 = []
list5 = []
list6 = []

while line:
    a = line.split()
    b4 = a
    b5 = a
    b6 = a

    list4.append(b4)
    list5.append(b5)
    list6.append(b6)

    line = f.readline()
f.close()
print(list4)#到这一步为止没有错误,部分输出结果如下[['20.2454'], ['23.7961'], ['18.9173'], ['19.1384'], ['20.8786'],

sumx = 0.0
sumx = sum(list4)#这里开始出错,TypeError: unsupported operand type(s) for +: 'int' and 'list'

wp231957 发表于 2021-1-26 17:53:09

列表中还有子列表,而且还是字符串,你这不是强人所难吗

Daniel_Zhang 发表于 2021-1-27 16:30:20

for 循环一下 list4吧

然后 str = each获得 '20.2454' 等字符串

int 强制转换试试?

然后想办法相加

你这 string 直接相加肯定是不行的

qq1151985918 发表于 2021-1-27 21:20:26

本帖最后由 qq1151985918 于 2021-1-27 21:36 编辑

list4 =[['20.2454'], ['23.7961'], ['18.9173'], ['19.1384'], ['20.8786']]

import re
getList4 = list(map(float,re.findall("\d+\.?\d*",str(list4))))
print(getList4)
print(sum(getList4))

ncx0331 发表于 2021-2-10 22:52:04

sum只能对数字有效,这里的值是列表,怎么求和。可以用int转换成整数
页: [1]
查看完整版本: 列表内所有数字求和