"""
逻辑非运算符
如果表达式为真,就是假
如果表达式为假,就是真
"""

r1 = not True
print(r1)

r2 = not False
print(r2)

r3 = not 1 > 2
print(r3)