If I have a list(or array, dictionary....) in python that could exceed the available memory address space, (32 bit python) what are the options and there relative speeds? (o
You might want to consider a different kind of structure: not a list, but figuring out how to do (your task) with a generator or a custom iterator.