show/hide this revision's text 2 edited to *exactly* match original request

Use map to apply your transformation function to each element in my_ar:

import numpy

my_ar = numpy.array((0,5,10))
print my_ar

transformed = map(lambda numpy.array(map(lambda x:numpy.array((x,x*2,x*3)), my_army_ar))
print transformed

print transformed.shape
show/hide this revision's text 1

Use map to apply your transformation function to each element in my_ar:

import numpy

my_ar = numpy.array((0,5,10))
transformed = map(lambda x:numpy.array((x,x*2,x*3)), my_ar)
print transformed
    Post Made Community Wiki by Community