为了账号安全,请及时绑定邮箱和手机立即绑定

原来把顺序反过来是走不通的啊。。。

score = 85


if score >=60:

    print 'passed'

elif score >=80:

    print 'good'

elif score >=90:

    print 'excellent'

else:

    print 'failed'

#结果:passed

正在回答

4 回答

if score >=60:

    print 'passed'

满足第一个判断的情况下,就会直接输出结果,不会在进行下面的判断了。

1 回复 有任何疑惑可以回复我~

反过来也是可以的啊

score=85

if score<60:

        print "failed"

elif score <80:

        print "passed"

elif score<90:

        print "good"

else:

        print "excellent"

0 回复 有任何疑惑可以回复我~

顺序要有分明


0 回复 有任何疑惑可以回复我~

score = 85
if score >=90:
    print 'excellent'
elif score >=80:
    print 'good'
elif score >=60:
    print 'passed'
else:
    print 'failed'

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758625    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

原来把顺序反过来是走不通的啊。。。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信