代码示例:(标识:python_if_else_2)
python_if_else_2.py
a = 200
b = 66
if b > a:
  print("b is greater than a")
else:
  print("b is not greater than a")
运行结果: