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
numbers = [] for i in range(10):numbers.append(i) result = map(lambda x: x * x * x,numbers) print(list(result))