Created
May 30, 2018 19:02
-
-
Save calthoff/0f4f24847dd818ea9a243eaff381cd73 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
| def even_odd(n): | |
| if n % 2 == 0: | |
| print("n is even.") | |
| else: | |
| print("n is odd.") | |
| even_odd(10) | |
| even_odd(11) | |
| even_odd(12) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment