Hello, John Nagle a écrit : > dmitrey wrote: >> howto make Python list from numpy.array? >> Thx, D. >> > > lst = map(None, arr) // for 1D arrays.
Which can be expressed more simply as: lst = list(arr) -- Amaury -- http://mail.python.org/mailman/listinfo/python-list