代码示例:(标识:python_if_and)
python_if_and.py
a = 200
b = 66
c = 500
if a > b and c > a:
  print("Both conditions are True")
运行结果: