Skip to content

Instantly share code, notes, and snippets.

@Abdelkrim
Created January 8, 2020 22:45
Show Gist options
  • Save Abdelkrim/25e97a959badf467d000a976596e4252 to your computer and use it in GitHub Desktop.
Save Abdelkrim/25e97a959badf467d000a976596e4252 to your computer and use it in GitHub Desktop.
Python : Check if the given number is even
def is_even(num):
return num % 2 == 0
is_even(10) # True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment