Are tuples more efficient than lists in Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T17:23:10Z http://stackoverflow.com/feeds/question/68630 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/68630/are-tuples-more-efficient-than-lists-in-python 5 Are tuples more efficient than lists in Python? Readonly 2008-09-16T01:43:39Z 2009-01-18T08:28:19Z <p>Is there any performance difference between tuples and lists when it comes to instantiation and retrieval of elements? </p> http://stackoverflow.com/questions/68630/are-tuples-more-efficient-than-lists-in-python/68638#68638 1 Answer by ctcherry for Are tuples more efficient than lists in Python? ctcherry 2008-09-16T01:45:39Z 2008-09-16T01:45:39Z <p>Tuples should be slightly more efficient and because of that, faster, than lists because they are immutable.</p> http://stackoverflow.com/questions/68630/are-tuples-more-efficient-than-lists-in-python/68712#68712 14 Answer by dF for Are tuples more efficient than lists in Python? dF 2008-09-16T01:57:10Z 2008-09-16T01:57:10Z <p>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").</p> <p>Python makes this very easy: <a href="http://docs.python.org/lib/module-timeit.html" rel="nofollow">timeit</a> is your friend.</p> <pre><code>$ python -m timeit "x=(1,2,3,4,5,6,7,8)" 10000000 loops, best of 3: 0.0388 usec per loop $ python -m timeit "x=[1,2,3,4,5,6,7,8]" 1000000 loops, best of 3: 0.363 usec per loop </code></pre> <p>and...</p> <pre><code>$ python -m timeit -s "x=(1,2,3,4,5,6,7,8)" "y=x[3]" 10000000 loops, best of 3: 0.0938 usec per loop $ python -m timeit -s "x=[1,2,3,4,5,6,7,8]" "y=x[3]" 10000000 loops, best of 3: 0.0649 usec per loop </code></pre> <p>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.</p> <p>Of course if you want to <em>change</em> 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).</p> http://stackoverflow.com/questions/68630/are-tuples-more-efficient-than-lists-in-python/68817#68817 17 Answer by Mark Harrison for Are tuples more efficient than lists in Python? Mark Harrison 2008-09-16T02:13:29Z 2009-01-18T08:28:19Z <p>The "dis" module disassembles the byte code for a function and is useful to see the difference between tuples and lists.</p> <p>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.</p> <pre><code>&gt;&gt;&gt; def a(): ... x=[1,2,3,4,5] ... y=x[2] ... &gt;&gt;&gt; def b(): ... x=(1,2,3,4,5) ... y=x[2] ... &gt;&gt;&gt; import dis &gt;&gt;&gt; dis.dis(a) 2 0 LOAD_CONST 1 (1) 3 LOAD_CONST 2 (2) 6 LOAD_CONST 3 (3) 9 LOAD_CONST 4 (4) 12 LOAD_CONST 5 (5) 15 BUILD_LIST 5 18 STORE_FAST 0 (x) 3 21 LOAD_FAST 0 (x) 24 LOAD_CONST 2 (2) 27 BINARY_SUBSCR 28 STORE_FAST 1 (y) 31 LOAD_CONST 0 (None) 34 RETURN_VALUE &gt;&gt;&gt; dis.dis(b) 2 0 LOAD_CONST 6 ((1, 2, 3, 4, 5)) 3 STORE_FAST 0 (x) 3 6 LOAD_FAST 0 (x) 9 LOAD_CONST 2 (2) 12 BINARY_SUBSCR 13 STORE_FAST 1 (y) 16 LOAD_CONST 0 (None) 19 RETURN_VALUE </code></pre> http://stackoverflow.com/questions/68630/are-tuples-more-efficient-than-lists-in-python/70968#70968 1 Answer by ΤΖΩΤΖΙΟΥ for Are tuples more efficient than lists in Python? ΤΖΩΤΖΙΟΥ 2008-09-16T10:16:52Z 2008-09-16T10:16:52Z <p>Tuples, being immutable, are more memory efficient; lists, for efficiency, overallocate memory in order to allow appends without constant <code>realloc</code>s. So, if you want to iterate through a constant sequence of values in your code (eg <code>for direction in 'up', 'right', 'down', 'left':</code>), tuples are preferred, since such tuples are pre-calculated in compile time.</p> <p>Access speeds should be the same (they are both stored as contiguous arrays in the memory).</p> <p>But, <code>alist.append(item)</code> is much preferred to <code>atuple+= (item,)</code> when you deal with mutable data. Remember, tuples are intended to be treated as records without field names.</p> http://stackoverflow.com/questions/68630/are-tuples-more-efficient-than-lists-in-python/71295#71295 -1 Answer by Ralph Corderoy for Are tuples more efficient than lists in Python? Ralph Corderoy 2008-09-16T11:14:08Z 2008-09-16T11:14:08Z <p>You should also consider the <code>array</code> module in the standard library if all the items in your list or tuple are of the same type. It can be faster and take less memory.</p>