What's the difference?
What are the advantages / disadvantages of tuples / lists?
|
3
|
|||||||||||||||
|
|
|
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.
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". |
||||||||||
|
|
|
tuples are immutable |
||
|
|
|
Lists are mutable; tuples are not. |
||||||||||
|
|
|
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:
|
|||
|
|
|
|
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. |
|||
|
|
|
|
Lists are intended to be homogeneous sequences, while tuples are heterogeneous data structures. |
||
|
|