python.array versus numpy.array - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T12:35:52Zhttp://stackoverflow.com/feeds/question/111983http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/111983/python-array-versus-numpy-array7python.array versus numpy.arrayHortitude2008-09-21T20:23:02Z2008-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#1120040Answer by Nicholas Riley for python.array versus numpy.arrayNicholas Riley2008-09-21T20:28:12Z2008-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#11202518Answer by dF for python.array versus numpy.arraydF2008-09-21T20:31:39Z2008-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>