""" MiddSIPP Summer 2019 Lab 1 Name: Creativity: """ """ Section 1 """ """ Copy your experimentation in the interpreter into this docstring "comment", i.e. replace these sentences (inside the triple quotes) with your experimentation. """ """ Section 2 """ # Error(s): ??? def square(x) return x**2 # Error(s): ??? def hypotenuse(side1, side2): return (side1**2 + sid2**2)**(1/2) print(hypotenuse(3, 4)) # Error(s): ??? def sqrt(x): return x**(1/2) # Error(s): ??? def compound_interest(investment, rate, num_years): amount = investment * ((1 + rate) ** num_years return amount """ Section 3 """ # Add your statements here # Add your circle_area function here... """ Section 4 """ # Add your study abroad functions here...