多分支结构
使用多分支结构判断成绩等级
score=int(input("请输入分数:"))
grade=""
if score<60:
grade="不及格"
elif score<80:
grade="及格"
elif score<90:
grade="良好"
elif score<=100:
grade="优秀"
print("分数是{0},等级是{1}".format(score,grade))
使用完整的条件表达判断成绩等级
if score<60:
grade="不及格"
if 60<=score<80:
grade="良好"
if 80<=score<100:
grade="优秀"
print("分数是{0},等级是{1}".format(score,grade))