当前位置:   article > 正文

Python语言基础与应用作业(第八章)

Python语言基础与应用作业(第八章)

8.1

 Code:

  1. n=input().split()
  2. m=list(map(int,input().split()))
  3. c=list(map(int,input().split()))
  4. e=list(map(int,input().split()))
  5. class Student:
  6. def __init__(self,a1,a2,a3,a4):
  7. self.score = a2 + a3 + a4
  8. self.pr='%s %d %d %d'%(a1,a2,a3,a4)
  9. ls=[];j=0
  10. for i in n:
  11. ls.append(Student(i,m[j],c[j],e[j]))
  12. j+=1
  13. ls.sort(key=lambda x:x.score,reverse=True)
  14. print(ls[0].pr)

8.2

  Code:

  1. m=tuple(map(int,input().split()))
  2. n=int(input())
  3. d={}
  4. for i,j in enumerate(m):
  5. if n-j in d:
  6. print([d[n-j],i])
  7. break
  8. d[j]=i

8.3

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/640733
推荐阅读
相关标签
  

闽ICP备14008679号