Skip to content

Instantly share code, notes, and snippets.

@calthoff
Created May 30, 2018 19:02
Show Gist options
  • Select an option

  • Save calthoff/0f4f24847dd818ea9a243eaff381cd73 to your computer and use it in GitHub Desktop.

Select an option

Save calthoff/0f4f24847dd818ea9a243eaff381cd73 to your computer and use it in GitHub Desktop.
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