Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HandsonMatheus/bad1560478561e1df707b6c425eae31f to your computer and use it in GitHub Desktop.
Save HandsonMatheus/bad1560478561e1df707b6c425eae31f to your computer and use it in GitHub Desktop.
# 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