Created
June 21, 2016 04:10
-
-
Save lbattaglioli2000/5c45b9b4897944f22bb3ebe0befb84e6 to your computer and use it in GitHub Desktop.
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
older35 = True | |
citizen = False | |
# compares the two operands to see if both are True | |
canBePresident = older35 and citizen | |
print("Can be president: " str(canBePresident)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment