vote up 10 vote down star
3

What's the difference?

What are the advantages / disadvantages of tuples / lists?

flag

The others answered below, but I'd like to point out, that, imho, python has a totally unintuitive data type names. I don't think any other language has tuples (by that name), and whats worse as a word I can't even translate it in my language. Does anyone know where "tuple" comes from ? Dutch ? – ldigas Mar 9 at 16:36
Just to point out, I use py and am happy with it. – ldigas Mar 9 at 16:37
Haskell has got tuples too. – gs Mar 9 at 16:38
1  
Tuples are a basic term in mathematics, derived from latin (see wikipedia). – nikow Mar 9 at 16:42
1  
pair -> triple -> quadruple -> quintuple -> sextuple -> um, what's it called, ah sod it, 7-tuple -> 8-tuple -> ... hence 'tuple' as a generic name. – John Fouhy Mar 9 at 22:21

6 Answers

vote up 26 vote down check

Apart from tuples being immutable there is also a semantic distinction that should guide your usage. Tuples have structure, lists have order. Using this distinction will make your code better to understand.

One example would be pairs of page and line number to reference locations in a book, e.g.

my_location = (42, 11)  # page number, line number

You can then use this as a key in a dictionary to store notes on locations.

I recommend reading one of the articles on this issue, e.g. "Python Tuples are Not Just Constant Lists" or "Understanding tuples vs. lists in Python".

link|flag
+1 from me. Very nice, indeed. – duffymo Mar 9 at 16:44
I read the links you provided, nikow. Thank you for the education. I'm just learning Python, and I didn't appreciate the full significance of tuple until I read your citations. – duffymo Mar 9 at 17:09
@duffymo: It took me a while to stumble across this as well :) Many people are probably not aware of this, and some might even disagree. I found this convention to be quite helpful in practice. – nikow Mar 9 at 17:16
+1, especially for your second link with a great example. Love this quote: "This tuple functions as a lightweight record or struct." – Baltimark Mar 9 at 17:31
Mentioning collections.namedtuple might be helpful. – J.F. Sebastian Mar 9 at 20:39
vote up 3 vote down

tuples are immutable

link|flag
I was waiting for an answer to a question when this popped up ;-) – Ferruccio Mar 9 at 15:43
vote up 11 vote down

Lists are mutable; tuples are not.

link|flag
I really think you should also consider the semantic implications (see my answer below). – nikow Mar 9 at 16:07
-1: No quote from documentation :-( – S.Lott Mar 9 at 16:12
D'oh! I'll try to do better next time... – duffymo Mar 9 at 16:43
Feel free to edit your answer to include a relevant link. – S.Lott Mar 9 at 18:33
Hardly seems worth the effort now, but thanks for the heads up. – duffymo Mar 9 at 19:50
show 1 more comment
vote up 11 vote down

The key difference is that tuples are immutable. This means that you cannot change the values in a tuple once you have created it.

So if you're going to need to change the values use a List.

If you use a tuple I can think of these benefits:

  1. Slight performance improvement.
  2. As a tuple is immutable in can be used a key in a dictionary.
  3. If you can't change it neither can anyone else, which is to say you don't need to worry about any API functions etc. changing your tuple without being asked.
link|flag
vote up 2 vote down

If you went for a walk, you could note your coordinates at any instant in an (x,y) tuple.

If you wanted to record your journey, you could append your location every 10 seconds, say, to a list.

But you couldn't do it the other way round.

link|flag
vote up 2 vote down

Lists are intended to be homogeneous sequences, while tuples are heterogeneous data structures.

link|flag

Your Answer

Get an OpenID
or

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