luck_purple 2021-12-29 15:31 采纳率: 100%
浏览 22
已结题

请问这一题应该如何做,刚学Python

【问题描述】输入若干成绩值,以回车作为输入结束。输出最高的三个成绩值,以及最大值和最小值。
【输入形式】"Input a score(end of enter):"

【输出形式】"Top 3 scores:" "max={},min={}"

【输入输出示例】


```python

Input a score(end of enter):9

Input a score(end of enter):4.6

Input a score(end of enter):8.2

Input a score(end of enter):1

Input a score(end of enter):4

Input a score(end of enter):7

Input a score(end of enter):

Top 3 scores:

9

8.2

7

max=9,min=1

```

  • 写回答

2条回答 默认 最新

  • 陈年椰子 2021-12-29 17:34
    关注
    s_lst = []
    while True:
        s = input("Input a score(end of enter):")
        if s == "":
            break
        else:
            s_lst.append(float(s))
    
    for i in range(len(s_lst)):
        if int(s_lst[i]) == s_lst[i]:
            s_lst[i] = int(s_lst[i])
    
    # print(s_lst)
    s_lst.sort(reverse=True)
    print("Top 3 scores:")
    for s in s_lst[:3]:
        print(s)
    print("max={},min={}".format(s_lst[0],s_lst[-1]))
    
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 1月6日
  • 已采纳回答 12月29日
  • 修改了问题 12月29日
  • 创建了问题 12月29日

悬赏问题

  • ¥15 爬虫爬取网站的一些信息
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
  • ¥15 麒麟V10桌面版SP1如何配置bonding
  • ¥15 Marscode IDE 如何预览新建的 HTML 文件
  • ¥15 K8S部署二进制集群过程中calico一直报错