提问:编程题:已知在正文文件{ }中记录了20名学生3门功课的成绩
网友回答:
你要说明你要用的编程语言的,以下是python的参考
f = open("dat.txt") line = f.readline() line=line.strip('\n') ct=0; while line: ct+=1 #print(line) no,s1,s2,s3=line.split(',') s=int(s1)+int(s2)+int(s3) v=s/3 print(no,s,v) line = f.readline() line=line.strip('\n') f.close()