12 lines
161 B
Python
12 lines
161 B
Python
|
# 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)
|