mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 04:30:24 +01:00
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)
|