vote up 2 vote down star

Is there any performance advantage to using lists over dictionaries over tuples in Python?

If I'm optimising for speed, is there any reason to prefer one over another?

flag

4 Answers

vote up 12 vote down check

Rich,

Lists and dicts are beasts suitable for different needs. Make sure you don't use lists for linear searches where dicts hashes are perfect, because it's way slower. Also, if you just need a list of elements to traverse, don't use dicts because it will take much more space than lists.

That may sound obvious, but picking the correct data structures algorithmically has much higher performance gains that micro-optimization due to more efficient compiled code layouts, etc. If you search in a list in O(n) instead of in a dict in O(1), micro-optimizations won't save you.

link|flag
1  
+1 comparison of difference between dicts and lists. Note that PHP programmers inherently don't get this difference. – Ali A Nov 21 '08 at 14:52
vote up 6 vote down

Tuples will be slightly faster to construct for a small number of elements. Although actually most of the gains will be in memory used rather than CPU cycles, since tuples require less space than lists.

With that being said, the performance difference should be negligible, and in general you shouldn't worry about these kinds of micro-optimizations until you've profiled your code and identified a section of code that is a bottleneck.

link|flag
vote up 2 vote down

The big difference is that tuples are immutable, while lists and dictionaries are mutable data structures. This means that tuples are also faster, so if you have a collection of items that doesn't change, you should prefer them over lists.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.