# Homework 21, problem 2: is_even. # # Define def is_even(n): that RETURNS True if n is even # and False otherwise. Print a few calls so the booleans appear. # # Run with: python exercises/21/homework/02-is-even.py # Your code goes here: