Skip to content

Instantly share code, notes, and snippets.

@Pierian-Data
Created March 1, 2018 17:16
Show Gist options
  • Save Pierian-Data/1bada60c3e479b808ef2f9bdc2b8762e to your computer and use it in GitHub Desktop.
Save Pierian-Data/1bada60c3e479b808ef2f9bdc2b8762e to your computer and use it in GitHub Desktop.
def is_even(n):
if n%2 == 0:
return True
# print(True) **tested to make sure it DOESN'T work
else:
return False
@haneenmuhammed2005
Copy link

def check_even(num):
if n%2==0:
return True
else:
return False

check_even(23)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment