else 语句else 语句a = 200b = 66if b > a: print("b is greater than a")elif a == b: print("a and b are equal")else: print("a is greater than b")