Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 27, 2020 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/740757449721ced2809ff5ba4cd2038c to your computer and use it in GitHub Desktop.
Save computer-tutor/740757449721ced2809ff5ba4cd2038c to your computer and use it in GitHub Desktop.
def even_odd(x):
if x%2==0:
return True
else:
return False
a=int(input("Enter any number:"))
even_odd(a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment