"""逻辑非运算符如果表达式为真,就是假如果表达式为假,就是真"""r1 = not Trueprint(r1)r2 = not Falseprint(r2)r3 = not 1 > 2print(r3)