Python: Write a function, divide(div, factor), with the following specifications.
Input: div, factor - int variables
Return True if div is divided by factor with no remainder, False otherwise.
Use try/except to handle TypeError exception, if the inputs are not integers, and ZeroDivisionError
exception, if factor equals zero.