In many places,(1,2,3) and [1,2,3] can be used interchangably.
When should I use one or the other, and why?
|
1
|
In many places,(1,2,3) and [1,2,3] can be used interchangably. When should I use one or the other, and why?
|
|||
|
|
|
|
From the Python FAQ:
Generally by convention you wouldn't choose a list or a tuple just based on its (im)mutability. You would choose a tuple for small collections of completely different pieces of data in which a full-blown class would be too heavyweight, and a list for collections of any reasonable size where you have a homogeneous set of data. |
||
|
|
|
|
The list [1,2,3] is dynamic and flexible but that flexibility comes at a speed cost. The tuple (1,2,3) is fixed (immutable) and therefore faster. EDIT: fixed spelling and added links to diveintopython.org |
|||
|
|
|
|
Tuples are a quick\flexible way to create composite data-types. Lists are containers for, well, lists of objects. For example, you would use a List to store a list of student details in a class. Each student detail in that list may be a 3-tuple containing their roll number, name and test score.
Also, because tuples are immutable they can be used as keys in dictionaries. |
||
|
|
|
|
The notion of tuples are highly expressive:
|
||
|
|
|
|
Whenever I need to pass in a collection of items to a function, if I want the function to not change the values passed in - I use tuples. Else if I want to have the function to alter the values, I use list. Always if you are using external libraries and need to pass in a list of values to a function and are unsure about the integrity of the data, use a tuple. |
|||
|
|
|
|
As others have mentioned, Lists and tuples are both containers which can be used to store python objects. Lists are extensible and their contents can change by assignment, on the other hand tuples are immutable. Also, lists cannot be used as keys in a dictionary whereas tuples can. |
||
|
|
|
|
If you can find a solution that works with tuples, use them, as it forces immutability which kind of drives you down a more functional path. You almost never regret going down the functional/immutable path. |
||
|
|
|
|
@statictypeorg
With the subtle caveat that a tuple must contain only other immutables to be considered hashable, e.g.: ([], 3) # not hashable ("hi", 3) # hashable ( ([], 3), 3) # not hashable ( ((), 3), 3) # hashable |
||
|
|