码迷,mamicode.com
首页 > 其他好文 > 详细

通过文档算学生的平均分

时间:2020-05-30 10:28:45      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:line   strong   mic   adl   text   strip   summer   rip   err   

tom 85 90
jerry 95 80
lucy 80 90
rose 88 90
jay 76 75
summer 87 85
horry 84 80
dic = {}
with open(score.txt,r) as f:
    lines = f.readlines()
    f.close()
    for line in lines:
        line = line.strip(\n).split( )
        dic[line[0]] = (int(line[1]),int(line[2]))
name = input()
if name not in dic.keys():
    print("not found")
else:
    print(sum(dic[name])/len(dic[name]))

2020-05-30

通过文档算学生的平均分

标签:line   strong   mic   adl   text   strip   summer   rip   err   

原文地址:https://www.cnblogs.com/hany-postq473111315/p/12990789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!