Create a function that returns True if an integer is evenly divisible by 5, and False otherwise.
True
False
divisible_by_five(5) ➞ True divisible_by_five(-55) ➞ True divisible_by_five(37) ➞ False
return