技术后端Python基础学习条件语句 Conditions条件语句 Conditionsa = 8b = 5if a > b: print("yes")elif a ==b: print("==")else: print("no")