Create a function that validates whether a number n is within the bounds of lower and upper. Return False if n is not an integer.
n
lower
upper
False
int_within_bounds(3, 1, 9) ➞ True int_within_bounds(6, 1, 6) ➞ False int_within_bounds(4.5, 3, 8) ➞ False