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