python tuple
Python hosting: Host, run, and code Python in the cloud!
The tuple data structure is used to store a group of data. The elements in this group are separated by a comma. Once created, the values of a tuple cannot change.
Related Course:
Python Programming Bootcamp: Go from zero to hero
Python Tuple
An empty tuple in Python would be defined as:
tuple = () |
A comma is required for a tuple with one item:
tuple = (3,) |
The comma for one item may be counter intuitive, but without the comma for a single item, you cannot access the element. For multiple items, you do not have to put a comma at the end. This set is an example:
personInfo = ("Diana", 32, "New York") |
The data inside a tuple can be of one or more data types such as text and numbers.
Data access
To access the data we can simply use an index. As usual, an index is a number between brackets:
#!/usr/bin/env python |
If you want to assign multiple variables at once, you can use tuples:
#!/usr/bin/env python |
On the right side the tuple is written. Left of the operator equality operator are the corresponding output variables.
Append to a tuple in Python
If you have an existing tuple, you can append to it with the + operator. You can only append a tuple to an existing tuple.
#!/usr/bin/env python |
If you are new to Python programming, I highly recommend this book.
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 !!!