Is there any performance difference between tuples and lists when it comes to instantiation and retrieval of elements?
|
2
|
|
|
|
|
|
The "dis" module disassembles the byte code for a function and is useful to see the difference between tuples and lists. In this case, you can see that accessing an element generates identical code, but that assigning a tuple is much faster than assigning a list.
|
|||
|
|
|
|
In general, you might expect tuples to be slightly faster. However you should definitely test your specific case (if the difference might impact the performance of your program -- remember "premature optimization is the root of all evil"). Python makes this very easy: timeit is your friend.
and...
So in this case, instantiation is almost an order of magnitude faster for the tuple, but item access is actually somewhat faster for the list! So if you're creating a few tuples and accessing them many many times, it may actually be faster to use lists instead. Of course if you want to change an item, the list will definitely be faster since you'd need to create an entire new tuple to change one item of it (since tuples are immutable). |
||
|
|
|
|
Tuples should be slightly more efficient and because of that, faster, than lists because they are immutable. |
||||||
|
|
|
Tuples, being immutable, are more memory efficient; lists, for efficiency, overallocate memory in order to allow appends without constant Access speeds should be the same (they are both stored as contiguous arrays in the memory). But, |
||
|
|
|
|
You should also consider the |
||||
|
