鱼C论坛

 找回密码
 立即注册
查看: 3160|回复: 3

[已解决]关于第6课python的课后作业的动动手拓展,该如何实现!

[复制链接]
发表于 2021-10-7 00:43:30 | 显示全部楼层 |阅读模式

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

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

x
#这个代码如何实现,只要是输入非整型的数据,如字符串,则表示查询失败,循环结束?
while True:
    fenshu = input("请输入你的分数:")
    if fenshu == 'e':
        print("查询失败!")
        break
    fs = int(fenshu)
    if fs == 100:
        print('S')
    else:
        if fs < 60:
            print('D')
        if 60 <= fs <80:
            print('C')
        if 80 <= fs <90:
            print('B')
        if 90 <= fs <100:
            print('A')
最佳答案
2021-10-7 11:17:39
while True:
    score = input("请输入你的分数:")
    if score == 'e':
        break
    else:
        score = int(score)
        print("S") if score == 100 else\
        print("A") if score >= 90 else\
        print("B") if score >= 80 else\
        print("C") if score >= 60 else\
        print("D")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-10-7 07:15:17 | 显示全部楼层
本帖最后由 大马强 于 2021-10-7 07:16 编辑

try语句学过吗,直接用try语句在转换整型那里判断下就好了
while True:
    fenshu = input("请输入你的分数:")
    if fenshu == 'e':
        print("查询失败!")
        break
    # 如果是字符串一定报错,try语句就是处理报错的
    try:
        fs = int(fenshu)
    except:
        print("请输入数字!")
        continue
    if fs == 100:
        print('S')
    else:
        if fs < 60:
            print('D')
        if 60 <= fs < 80:
            print('C')
        if 80 <= fs < 90:
            print('B')
        if 90 <= fs < 100:
            print('A')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-10-7 11:17:39 | 显示全部楼层    本楼为最佳答案   
while True:
    score = input("请输入你的分数:")
    if score == 'e':
        break
    else:
        score = int(score)
        print("S") if score == 100 else\
        print("A") if score >= 90 else\
        print("B") if score >= 80 else\
        print("C") if score >= 60 else\
        print("D")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2021-11-2 00:32:57 | 显示全部楼层
fenshu = input("请输入你的分数:")
fenshu1 = fenshu.isdigit()
while fenshu1:
    if fenshu.isalpha():
        print('查询失败')
        break
    fs = int(fenshu)
    print("S") if fs == 100 else \
    print("A") if fs >= 90 else \
    print("B") if fs >= 80 else \
    print("C") if fs >= 60 else \
    print("D")
    fenshu = input("请输入你的分数:")

纪念一下
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-4 14:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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