On Jan 17, 2:20 pm, Jake Biesinger <jake.biesin...@gmail.com> wrote:
> Is there a python standard library way of creating *efficient* 2-dimensional 
> lists/arrays, still allowing me to sort and append?

Without using third party libraries, no not really.  numpy has it
covered so there's not really a lot of demand for it.  If your users
are loading 1.5 GB arrays into memory, it's probably not unreasonable
to expect them to have numpy installed.

Other than that you're probably stuck emulating 2D with the array
module.


Carl Banks
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to