14-常用成绩分类1

score = int(input('分数: '))

if score >= 90:
    print('优秀')

elif score >= 80:
    print('')

elif score >= 70:
    print('')

elif score >= 60:
    print('及格')

else:
    print('你要努力了')


输出:

 


posted @ 2019-05-13 16:32  hejp  阅读(171)  评论(0编辑  收藏  举报