I am told to
Write a function, square(a), that takes an array, a, of numbers and returns an array containing each of the values of a squared.
At first, I ha
import numpy as np a = [2 ,3, 4] np.square(a)