Skip to content

Instantly share code, notes, and snippets.

@sbaldwin24
Created November 8, 2014 20:30
Show Gist options
  • Save sbaldwin24/2063befa0183411a4b50 to your computer and use it in GitHub Desktop.
Save sbaldwin24/2063befa0183411a4b50 to your computer and use it in GitHub Desktop.
Python Boolean Operators
"""
Boolean Operators
------------------------ True and True is True
True and False is False
False and True is False
False and False is False
True or True is True
True or False is True
False or True is True
False or False is False
Not True is False
Not False is True
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment