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

这个怎么做

score = 85

if ???:
    print 'excellent'
elif ???:
    print 'good'
elif ???:
    print 'passed'
else:
    print 'failed'


正在回答

2 回答

score = 85


if score>=90:

    print 'excellent'

elif score>=80 and score<90:

    print 'good'

elif score>=60 and score<80:

    print 'passed'

else:

    print 'failed'


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

score = 85

if score>=90:
    print 'excellent'
elif score>=80:
    print 'good'
elif score>=60:
    print 'passed'
else:
    print 'failed'
   
age = 20
if age >= 18:
    print 'adult'
elif age >= 6:
    print 'teenager'
else:
    print 'kid'


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

python入门中

输出结果就是一个good?
2019-07-04 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

这个怎么做

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