howto make Python list from numpy.array?

John Nagle nagle at animats.com
Sun May 6 15:50:35 EDT 2007


dmitrey wrote:
> howto make Python list from numpy.array?
> Thx, D.
> 

lst = map(None, arr)		// for 1D arrays.

				John Nagle



More information about the Python-list mailing list