赞
踩
1.现有一个字典存放着学生的学号和成绩。成绩列表里的3个数据分别是学生的语文、数学和英语成绩:
dict={‘01’:[67,88,45],‘02’:[97,68,85],‘03’:[97,98,95],‘04’:[67,48,45],‘05’:[82,58,75],‘06’:[96,49,65]}
完成以下操作:
1)编写函数,返回每门成绩均大于等于85的学生的学号
dict={'01':[67,88,45],'02':[97,68,85],'03':[97,98,95],'04':[67,48,45],'05':[82,58,75],'06':[96,49,65]}
for i in list(dict.keys()):
scores = dict[i]
if scores[0]>=85 and scores[1]>=85 and scores[2]>=85:
print(i)
2)编写函数,返回每一个学号对应的平均分(sum和len)和总分(sum),结果保留两位小数
dict={'01':[67,88,45],'02':[97,68,85],'03':[97,98,95],'04':[67,48,45],'05':[82,58,75],'06':[96,49,65]}
for i in list(dict.keys()):
print(i, round(sum(dict[i])/len(dict[i]),2))
3)编写函数,返回按总分升序排列的学号列表
请在【python数据分析之禅】gzh后台,回复‘作业’获取答案
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。