python tuple
Python hosting: Host, run, and code Python in the cloud!
The tuple is an essential data structure in Python, used to store a collection of related data. Different from lists, once a tuple is created, its values remain immutable.
Recommended Course: Python Programming Bootcamp: Go from zero to hero
What is a Python Tuple?
A tuple allows you to store multiple items in a single structure. Here’s how to define an empty tuple:
tuple_example = () |
For a tuple containing just one item, you need a comma after the item:
single_item_tuple = (3,) |
This might seem odd at first, but omitting the comma can cause unexpected behavior. For tuples with multiple items, there’s no need for a trailing comma:
personInfo = ("Diana", 32, "New York") |
A tuple can accommodate diverse data types—both text and numbers can coexist within the same tuple.
Accessing Tuple Data
Like lists, tuples are indexed. You can retrieve any item by referencing its index:
personInfo = ("Diana", 32, "New York") |
Tuples also facilitate simultaneous assignment of multiple variables:
name, age, country, career = ('Diana', 32, 'Canada', 'CompSci') |
The tuple’s values are on the right, while the variables receiving those values are on the left.
Modifying Tuples
Although you can’t alter the content of a tuple, you can concatenate or join two tuples using the +
operator:
x = (3,4,5,6) |
Enhance your Python skills with these Downloadable Python Exercises.
Leave a Reply:
Why would you use a Tuple over a List? What's the difference?
Tuple is another datastructure, it has different properties. A tuple has no methods and cannot be changed once created. Tuples may be faster than lists to iterate.
I also read that tuples are heterogeneous (could be used for various data types) while lists are homogeneous (should be used for one data type)
I do not use this wording of Heterogeneous/Homogeneous. Its very confusion, because we can insert values of different data types in both list and tuple. I believe the only difference is that List is mutable Tuple is not. Tuple is fast accessed on memory when compared to List in some cases.
list are homogeneous.. ??? l= ["a","b","c"]; l.append("d"); l.append(123); I added a string type and an integer type. Both worked fine.
Hi Reddy, a python list can hold multiple datatypes:
Output:
why we have to use tuple? it seems all tuple's usage also can be achieved by list.
Lists are dynamic in size while tuples are fixed. You can't add or remove elements to a tuple. Tuples are faster than lists. They secure from data being modified.
i can,t understand
First line is a tuple (pair of variables). Then a string is created and printed.
How does Join work ?
, the output is " Diana-trial Canada-trial CompSci" . The join does not happen for the last value.When I give -
Hi vaishnavi, I'll look at this asap.
str.join(iterable)
Join returns a string which is the concatenation of the strings in the iterable iterable. The separator between elements is the string providing this method.
In this case we have concatenations (Diana, Canada) and(Canada, CompSci). They are connected with the separator.
To add the text '-trial' to each element, simply use a loop on the list with a concatenation.
Hi Frank, thanks a lot for your reply..!
[ Sorry for the late reply ..]
I understood why it is not added at the end. But how do we achieve this using a loop.
Is the below code correct ?
Output: Diana-trialCanada-trialCompSci
Even here the concatenation does not happen for the last one .
You could do this:
which outputs:
Diana-trial Canada-trial CompSci-trial
Thanks Frank, it works.
Also thanks for such a wonderful tutorial !!
but we can Append to a tuple in Python,which will change its size.so how can we say that its size is fixed
Hi Reeba, technically we are not appending but creating a new tuple that replaces the old one. In the example above we say "x = " which recreates a new tuple. In practice this is of course appending, but technically on the computational level we are replacing the memory.
Thanks Frank !!!