08-成绩分类2

作者: pengwg | 来源:发表于2019-11-20 14:54 被阅读0次
score = int(input('请输入你的成绩分数:'))

if 60 <= score < 70:
    print('合格')
elif 70 <= score < 80:
    print('良')
elif 80 <= score < 90:
    print('良好')
elif 90 <= score <= 100:
    print('优秀')
else:
    print('骚年,还需努力')

相关文章

网友评论

    本文标题:08-成绩分类2

    本文链接:https://www.haomeiwen.com/subject/vmqoictx.html