Created
February 9, 2018 03:50
-
-
Save danielvlopes/82fe56ef3f6db0a93ce3d9f3920e5fad 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
>>> answer = "yes" | |
>>> num_answers = 0 | |
>>> if answer: | |
... num_answers = num_answers + 1 | |
... | |
>>> answer = "" | |
>>> | |
>>> print num_answers | |
1 | |
>>> print answer | |
>>> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment