Appearance
编写格式
if score >= 90: level = "优秀" elif score >= 80: level = "良好" elif score >= 60: level = "合格" else: level = "不合格"
条件1为false,就到条件二,一直到最后。