# import numpy as np # def circleParams(r): ''' Given the radius of a circle, this function returns its area and circumference. ''' A = np.pi*r**2 c = 2*np.pi*r return A, c