Given a np.array A and a function f, I would like to create a tuple containing f(A). I simply did:
A
f
f(A)
x = tuple(map(f,A))