score = int(input('请输入您的成绩:'))if score>100 or score<0:print('请输入正确的成绩')else:if score>90:print('您的成绩为:{}'.format(score))elif score>80:print('您的成绩为:{}'.format(score))elif score>70:print('您的成绩为:{}'.format(score))else:print('您的成绩为:{}'.format(score))
