Created
March 12, 2025 00:28
-
-
Save HandsonMatheus/bad1560478561e1df707b6c425eae31f 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
| # SECOND EXERCISE ON PRACTICEPYTHON.ORG | |
| def even_or_odd(number): | |
| if number % 2: | |
| return "Even" | |
| else: | |
| return "Odd" | |
| print(even_or_odd(4)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment