9 lines
99 B
Python
9 lines
99 B
Python
>>> True and False
|
|
False
|
|
>>> False and True
|
|
False
|
|
>>> False and False
|
|
False
|
|
>>> True and True
|
|
True
|