# Write a function that gets the radius of a circle, # and displays and returns # the approximation of the circle's area. # Use 3.14 as the value for pi. def compute_area(radius): print(compute_area(3)) print(compute_area(3.0)) print(compute_area(0)) print(compute_area(-3))