elif 语句

  1. a = 66
  2. b = 66
  3. if b > a:
  4. print("b is greater than a")
  5. elif a == b:
  6. print("a and b are equal")