Skip to content

Instantly share code, notes, and snippets.

@alex-ber
Created September 8, 2022 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex-ber/9f04ff6b08575cb906aee7b10ff7d1f6 to your computer and use it in GitHub Desktop.
Save alex-ber/9f04ff6b08575cb906aee7b10ff7d1f6 to your computer and use it in GitHub Desktop.
02_bool2.py
if(0 and True):
print("if")
else:
print("else")
if(2 or True):
print("if")
else:
print("else")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment