def convert_inches_cm ( ) :
#
# ****************************************
# add comment statements describing function
# ****************************************
#
# test out function
inches = 10
centimeters = convert_inches_cm(inches)
print (f"{inches} inches is equivalent to {centimeters} centimeters" )
def check_within_bounds ( ) :
#
# ****************************************
# add comment statements describing function
#
# test function
my_list = [ 5, 21, 51, 17]
my_list = [-2, 4, 3, 5]
x= np.array( [1,2,3,4,5])
y= np.array([2, 4, 6, 16,25])
x= np.array( [1,2,3,4,5])
y= np.array([2, 4, 6, 16,25])