Created
September 3, 2017 18:20
-
-
Save leovolving/26acdd6d821241c323df473ae4526589 to your computer and use it in GitHub Desktop.
This file contains 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
def true_or_false(bool): | |
if bool == True: | |
return "This is a true statement!" | |
else: | |
return "This is a false statement!" | |
print true_or_false(False) # returns the else block |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment