鱼C论坛

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

[已解决]请大神们帮我看一下什么问题?

[复制链接]
发表于 2020-4-21 18:44:05 | 显示全部楼层 |阅读模式

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

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

x
print("请输入您的成绩:")
temp = input()
score = int(temp)

while score.isdigit() == False :
    print("非法操作,请输入一个数字:\n")
    temp = input()
    score = int(temp)

if score > 90 :
    print("您的成绩为A")

if 80 < score <= 90 :
    print("您的成绩为B")

if 60 < score <= 80 :
    print("您的成绩为C")

if score < 60 :
    print("您的成绩为D")

Traceback (most recent call last):
  File "C:/Users/Administrator/Desktop/python练习题/成绩小程序.py", line 5, in <module>
    while score.isdigit() == False :
AttributeError: 'int' object has no attribute 'isdigit'
最佳答案
2020-4-21 18:46:58
本帖最后由 liuzhengyuan 于 2020-4-21 18:51 编辑

isdigit() 只支持字符串(str),你的 score 是整形(int),当然不行
temp 是字符串(str),把 score.isdigit() 改为 temp.isdigit(),即可
还有,你要先判断他是不是数字,然后在变成数字
print("请输入您的成绩:")
temp = input()

while temp.isdigit() == False :
    print("非法操作,请输入一个数字:\n")
    temp = input()
    score = int(temp)

score = int(temp)

if score > 90 :
    print("您的成绩为A")

if 80 < score <= 90 :
    print("您的成绩为B")

if 60 < score <= 80 :
    print("您的成绩为C")

if score < 60 :
    print("您的成绩为D")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-21 18:46:58 | 显示全部楼层    本楼为最佳答案   
本帖最后由 liuzhengyuan 于 2020-4-21 18:51 编辑

isdigit() 只支持字符串(str),你的 score 是整形(int),当然不行
temp 是字符串(str),把 score.isdigit() 改为 temp.isdigit(),即可
还有,你要先判断他是不是数字,然后在变成数字
print("请输入您的成绩:")
temp = input()

while temp.isdigit() == False :
    print("非法操作,请输入一个数字:\n")
    temp = input()
    score = int(temp)

score = int(temp)

if score > 90 :
    print("您的成绩为A")

if 80 < score <= 90 :
    print("您的成绩为B")

if 60 < score <= 80 :
    print("您的成绩为C")

if score < 60 :
    print("您的成绩为D")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-21 18:48:22 | 显示全部楼层
就是整型变量没有'isdigit'这个函数,你的score都已经是整型了,还用判断他是数字吗?
非要改,直接用temp.isdigit()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-26 18:48

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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