Created
September 8, 2022 20:16
-
-
Save alex-ber/9bf8d0cf616dc6e3021cd7dcd3f39b98 to your computer and use it in GitHub Desktop.
01_bool1.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print(0 and True) | |
print(2 and True) | |
print(0 or True) | |
print(2 or True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment