我需要制作一个表格,从文本文件中提取一个或多个人的姓名和在各种游戏中的得分,然后找到每个人得分的平均值、最小值和最大值并显示它们。
编辑-这是我当前的代码:
while name!='':
floor=text_file.readline().rstrip()
rings=text_file.readline().rstrip()
p_bars=text_file.readline().rstrip()
p_horse=text_file.readline().rstrip()
h_bar=text_file.readline().rstrip()
floor_int=int(floor)
rings_int=int(rings)
p_bars_int=int(p_bars)
p_horse_int=int(p_horse)
h_bar_int=int(h_bar)
score_sum=floor_int+rings_int+p_bars_int+p_horse_int+h_bar_int
avg=score_sum/5
我如何能够对具有数字的行进行数学运算并排除具有名称的行?
编辑:运行该代码给了我这个: TypeError: Can't convert 'float' object to str implicitly
有任何想法吗?