python怎么样逐行读取文件然后计算平均值
我知道用readline所以不要只留一句用readline我用了之后split没有办法计算每次都是说str没法计算用了pop把数字提出来也不行file内容是这样的Lemo...
我知道用readline所以不要只留一句用readline 我用了之后split没有办法计算每次都是说str 没法计算 用了pop把数字提出来也不行
file内容是这样的
Lemon juice,2.4,2.0,2.2
Baking soda (1 Tbsp) in Water (1 cup),8.4,8.3,8.7
Orange juice,3.5,4.0,3.4
Battery acid,1.0,0.7,0.5
Apples,3.0,3.2,3.5
Tomatoes,4.5,4.2,4.0
Bottled water,6.7,7.0,7.2
Milk of magnesia,10.5,10.3,10.6
Liquid hand soap,9.0,10.0,9.5
Vinegar,2.2,2.9,3.0
Household bleach,12.5,12.5,12.7
Milk,6.6,6.5,6.4
Household ammonia,11.5,11.0,11.5
Lye,13.0,13.5,13.4
Sodium hydroxide,14.0,14.0,13.9
Anti-freeze,10.1,10.9,9.7
Windex,9.9,10.2,9.5
Liquid detergent,10.5,10.0,10.3
Cola,3.0,2.5,3.2 展开
file内容是这样的
Lemon juice,2.4,2.0,2.2
Baking soda (1 Tbsp) in Water (1 cup),8.4,8.3,8.7
Orange juice,3.5,4.0,3.4
Battery acid,1.0,0.7,0.5
Apples,3.0,3.2,3.5
Tomatoes,4.5,4.2,4.0
Bottled water,6.7,7.0,7.2
Milk of magnesia,10.5,10.3,10.6
Liquid hand soap,9.0,10.0,9.5
Vinegar,2.2,2.9,3.0
Household bleach,12.5,12.5,12.7
Milk,6.6,6.5,6.4
Household ammonia,11.5,11.0,11.5
Lye,13.0,13.5,13.4
Sodium hydroxide,14.0,14.0,13.9
Anti-freeze,10.1,10.9,9.7
Windex,9.9,10.2,9.5
Liquid detergent,10.5,10.0,10.3
Cola,3.0,2.5,3.2 展开
1个回答
展开全部
你想怎么算均值, 哪些数值参与均值计算
更多追问追答
追问
计算每一行单独的平均值
output 样子 名字 平均值
追答
filename = 'your_file_name'
for line in open(filename):
name, point = line.split(',', 1)
point = [float(e) for e in point.split(',')]
average = sum(point) / len(point)
print('{} {:.2f}'.format(name, average))
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询