python.array versus numpy.array - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T12:35:52Z http://stackoverflow.com/feeds/question/111983 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/111983/python-array-versus-numpy-array 7 python.array versus numpy.array Hortitude 2008-09-21T20:23:02Z 2008-09-22T14:54:35Z <p>If you are creating a 1d array in Python is there any benefit to using the NumPy package?</p> http://stackoverflow.com/questions/111983/python-array-versus-numpy-array/112004#112004 0 Answer by Nicholas Riley for python.array versus numpy.array Nicholas Riley 2008-09-21T20:28:12Z 2008-09-21T20:28:12Z <p>Depends what you want to do with the array.</p> http://stackoverflow.com/questions/111983/python-array-versus-numpy-array/112025#112025 18 Answer by dF for python.array versus numpy.array dF 2008-09-21T20:31:39Z 2008-09-21T20:36:47Z <p>It all depends on what you plan to do with the array. If all you're doing is creating arrays of simple data types and doing I/O, the <a href="http://docs.python.org/lib/module-array.html" rel="nofollow">array</a> module will do just fine.</p> <p>If, on the other hand, you want to do any kind of numerical calculations, the array module doesn't provide any help with that. <a href="http://numpy.scipy.org/array_interface.shtml" rel="nofollow">NumPy</a> (and <a href="http://scipy.org" rel="nofollow">SciPy</a>) give you a wide variety of operations between arrays and special functions that are useful not only for scientific work but for things like advanced image manipulation or in general anything where you need to perform efficient calculations with large amounts of data.</p> <p>Numpy is also much more flexible, e.g. it supports arrays of any type of Python objects, and is also able to interact "natively" with your own objects if they conform to the <a href="http://numpy.scipy.org/" rel="nofollow">array interface</a>.</p>