求解python编程题,求代码 10
输入一个文件A,A中每行包含若干数值,生成文件B,B中每行是A中对应每行的数值平均值。要求求平均值用函数来实现...
输入一个文件A,A中每行包含若干数值,生成文件B,B中每行是A中对应每行的数值平均值。要求求平均值用函数来实现
展开
1个回答
展开全部
第一种:
============================================
from sys import argv
p, file_a, file_b = argv
text = open(file_a).read()
f = open(file_b, 'w')
list = list(text.split('\n'))
for i in list:
num = sum(eval(i)) / len(eval(i))
f.write(str(num) + '\n')
============================================
需要同一文件夹下有xxx.py、a.txt、b.txt。
在命令行中切换到这个路径后,输入:
python3 xxx.py a.txt b.txt
a.txt的格式为:
[a, b, c, 。。。]
[d, e, f, 。。。]
。。。
三个文件的名字自拟。
》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》
第二种:
============================================
from sys import argv
p, file_a, file_b = argv
text = open(file_a).read()
f = open(file_b, 'w')
line_int = []
line_str = text.split('\n')
for a in line_str:
for b in a.split(' '):
line_int.append(int(b))
num = sum(line_int) / len(line_int)
f.write(str(num) + '\n')
============================================
与第一种的区别是a.txt的格式:
a b c 。。。
d e f 。。。
。。。
按需求选择。。。
忘采纳!
============================================
from sys import argv
p, file_a, file_b = argv
text = open(file_a).read()
f = open(file_b, 'w')
list = list(text.split('\n'))
for i in list:
num = sum(eval(i)) / len(eval(i))
f.write(str(num) + '\n')
============================================
需要同一文件夹下有xxx.py、a.txt、b.txt。
在命令行中切换到这个路径后,输入:
python3 xxx.py a.txt b.txt
a.txt的格式为:
[a, b, c, 。。。]
[d, e, f, 。。。]
。。。
三个文件的名字自拟。
》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》
第二种:
============================================
from sys import argv
p, file_a, file_b = argv
text = open(file_a).read()
f = open(file_b, 'w')
line_int = []
line_str = text.split('\n')
for a in line_str:
for b in a.split(' '):
line_int.append(int(b))
num = sum(line_int) / len(line_int)
f.write(str(num) + '\n')
============================================
与第一种的区别是a.txt的格式:
a b c 。。。
d e f 。。。
。。。
按需求选择。。。
忘采纳!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询