4 lines
104 B
Python
4 lines
104 B
Python
def logic(a, b):
|
|
print('a and b:', a and b)
|
|
print('a or b:', a or b)
|
|
print('not a:', not a)
|