鱼C论坛

 找回密码
 立即注册
查看: 1280|回复: 2

[已解决]python第六讲 动动手第二题!!

[复制链接]
发表于 2021-11-20 23:36:42 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
uu们,第六讲的动动手第二题:修改上一题的代码,让程序可以不断接收输入,直至用户输入小写字母 e 结束程序
     我想要在打出e的时候顺带写出“继续加油哦!”,不知道我哪里写错了,显示了两遍的“请输入你的分数:”就没有了,求求大佬们解答一下!!


""" 请输入成绩 """
temp=input("请输入你的分数:")
temp=int(temp)
while temp !="e":

    if temp<60:
        print("D")
    if 60<=temp<80:
        print("C")
    if 80<=temp<90:
        print("B")
    if 90<=temp<100:
        print("A")
    if temp==100:
        print("S")
    temp=input("请输入你的分数:")
print("继续加油哦!")
最佳答案
2021-11-20 23:52:25
temp = ''
while True:
    temp = input("请输入你的分数:")
    if temp != 'e':
        temp = int(temp)
        if temp < 60:
            print("D")
        elif 60 <= temp < 80:
            print("C")
        elif 80 <= temp < 90:
            print("B")
        elif 90 <= temp < 100:
            print("A")
        elif temp == 100:
            print("S")
    else:
        print("继续加油哦!")
        break
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-11-20 23:52:25 | 显示全部楼层    本楼为最佳答案   
temp = ''
while True:
    temp = input("请输入你的分数:")
    if temp != 'e':
        temp = int(temp)
        if temp < 60:
            print("D")
        elif 60 <= temp < 80:
            print("C")
        elif 80 <= temp < 90:
            print("B")
        elif 90 <= temp < 100:
            print("A")
        elif temp == 100:
            print("S")
    else:
        print("继续加油哦!")
        break
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-11-21 17:28:39 | 显示全部楼层
谢谢谢谢!懂了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 18:55

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表