> How many items can be stored in a Python list? I have close to 70,000
> items... is this within a lists limits?

Lists store pointers to objects.  Unless you have a lot of duplicates, it is the
objects themselves that will consume most of your memory.  The list itself will
likely be small in comparison.


Raymond Hettinger


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

Reply via email to