You can download this code by clicking the button below.
This code is now available for download.
Determine if a number is even
Technology Stack : Built-in functions, conditional statements
Code Type : Function
Code Difficulty :
def a_is_even(num):
if num % 2 == 0:
return True
else:
return False