Last active
October 2, 2018 15:49
-
-
Save bern/c31c17feb39076935faf274d352debe8 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
if condition1: | |
condition1Succeeded = True | |
if condition2: | |
condition2Succeeded = True | |
if condition1Succeeded and condition2Succeeded: | |
print("success!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment