1 2 3 4 5 6 7 8 9 10 11
# tests for bool objects # basic logic print(not False) print(not True) print(False and True) print(False or True) # unary operators print(+True) print(-True)