"""二路分支:if 条件 条件成立时执行else 条件不成立时执行"""# 分数score = 51# 判断if score >= 60: print("考试合格")else: print("考试不合格")