2017-12-15python全栈9期第二天第七节之运算符时间:2023-03-08 20:45:58#!/user/bin/python# -*- coding:utf-8 -*-print(3>4 or 4<3 and 1==1)print(1<2 and 3 <4 or 1 > 2)