-
Notifications
You must be signed in to change notification settings - Fork 4
Tuple
Tuples are used to store multiple items in a single variable.
Tuple is one of 4 built-in data types in Python used to store collections of data, the other 3 are
List
,Set
, andDictionary
all with different qualities and usage.A tuple is a collection which is ordered and unchangeable.
Tuples are written with round brackets. if inside of parentheses is a comma it will be Tuple.
Thies are Tuple:
(1,)
and1,
and'1',
This
(1)
is not Tuple, it isint
.
Create a Tuple:
this_tuple = ("apple", "banana", "cherry")
print(this_tuple)
To create a tuple with only one item, you have to add a comma after the item, otherwise Python will not recognize it as a tuple.
One item tuple, remember the comma:
this_tuple = ("apple",)
print(type(this_tuple))
NOT a tuple:
this_tuple = ("apple")
print(type(this_tuple))
It is also possible to use the
tuple()
constructor to make a tuple. Using thetuple()
method to make a tuple.
this_tuple = tuple(("apple", "banana", "cherry")) # note the double round-brackets
print(this_tuple)
Tuple items are ordered, unchangeable, and allow duplicate values. Tuple items are indexed, the first item has index [0], the second item has index [1] etc.
this_tuple = ("apple", "banana", "cherry")
print(this_tuple[1])
When we say that tuples are ordered, it means that the items have a defined order, and that order will not change.
Tuples are unchangeable, meaning that we cannot change, add or remove items after the tuple has been created.
Since tuples are indexed, they can have items with the same value.
Tuples allow duplicate values:
this_tuple = ("apple", "banana", "cherry", "apple", "cherry")
print(this_tuple)
Tuple items can be of any data type, String, int and boolean data types.
tuple1 = ("apple", "banana", "cherry")
tuple2 = (1, 5, 7, 9, 3)
tuple3 = (True, False, False)
tuple4 = ("abc", 34, True, 40, "male")
They are more efficient than lists. use theme for data that shouldn't change.
Some methods returnn Tuple like
dict.items()
They can be used as keys in a dictionary and if you wanted to use multiple values as a key, you cant use a
list
or adict
, otherwise you will get anTypeError
.
A dictionary by Tuple key:
dict_tuple_key = {(1, 2): 'python'}
To determine how many items a tuple has, use the
len()
function.
Print the number of items in the tuple:
this_tuple = ("apple", "banana", "cherry")
print(len(this_tuple))
From Python's perspective, tuples are defined as objects with the data type
tuple
.<class 'tuple'>
What is the data type of tuple?
my_tuple = ("apple", "banana", "cherry")
print(type(my_tuple))
You can access tuple items by referring to the index number, inside square brackets.
Print the second item in the tuple:
this_tuple = ("apple", "banana", "cherry")
print(this_tuple[1])
Negative indexing means start from the end.
-1
refers to the last item,-2
refers to the second last item etc.
Print the last item of the tuple:
this_tuple = ("apple", "banana", "cherry")
print(this_tuple[-1])
You can specify a range of indexes by specifying where to start and where to end the range.
When specifying a range, the return value will be a new tuple with the specified items.
Return the third, fourth, and fifth item:
this_tuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")
print(this_tuple[2:5])
Note: The search will start at index 2 (included) and end at index 5 (not included). By leaving out the start value, the range will start at the first item.
This example returns the items from the beginning to, but NOT included, "kiwi":
this_tuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")
print(this_tuple[:4])
By leaving out the end value, the range will go on to the end of the list.
This example returns the items from "cherry" and to the end:
this_tuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")
print(this_tuple[2:])
Specify negative indexes if you want to start the search from the end of the tuple.
This example returns the items from index -4
(included) to index -1
(excluded):
this_tuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango")
print(this_tuple[-4:-1])
To determine if a specified item is present in a tuple use the in keyword.
Check if "apple" is present in the tuple:
this_tuple = ("apple", "banana", "cherry")
if "apple" in this_tuple:
print("Yes, 'apple' is in the fruits tuple")
Tuples are unchangeable, meaning that you cannot change, add, or remove items once the tuple is created. But there are some workarounds.
Once a tuple is created, you cannot change its values. Tuples are unchangeable, or immutable as it also is called. But there is a workaround. You can convert the tuple into a list, change the list, and convert the list back into a tuple.
Convert the tuple into a list to be able to change it:
x = ("apple", "banana", "cherry")
y = list(x)
y[1] = "kiwi"
x = tuple(y)
print(x)
Since tuples are immutable, they do not have a build-in
append()
method, but there are other ways to add items to a tuple.
Convert into a list:
Just like the workaround for changing a tuple, you can convert it into a list, add your item(s), and convert it back into a tuple.
Convert the tuple into a list, add "orange", and convert it back into a tuple:
this_tuple = ("apple", "banana", "cherry")
y = list(this_tuple)
y.append("orange")
this_tuple = tuple(y)
print(this_tuple)
Add tuple to a tuple
: You are allowed to add tuples to tuples, so if you want to add one item, (or many). create a new tuple with the item(s), and add it to the existing tuple.
Create a new tuple with the value "orange", and add that tuple:
this_tuple = ("apple", "banana", "cherry")
y = ("orange",)
Note: When creating a tuple with only one item, remember to include a comma after the item, otherwise it will not be identified as a tuple.
this_tuple += y
print(this_tuple)
Note: You cannot remove items in a tuple. Tuples are unchangeable, so you cannot remove items from it, but you can use the same workaround as we used for changing and adding tuple items.
Convert the tuple into a list, remove "apple", and convert it back into a tuple:
this_tuple = ("apple", "banana", "cherry")
y = list(this_tuple)
y.remove("apple")
this_tuple = tuple(y)
print(this_tuple)
Or you can delete the tuple completely, The del keyword can delete the tuple completely:
this_tuple = ("apple", "banana", "cherry")
del this_tuple
print(this_tuple) # this will raise an error because the tuple no longer exists
When we create a tuple, we normally assign values to it. This is called
packing
a tuple.
Packing a tuple:
fruits = ("apple", "banana", "cherry")
Unpacking a tuple:
(green, yellow, red) = fruits
But, in Python, we are also allowed to extract the values back into variables. This is called unpacking
:
print(green)
print(yellow)
print(red)
Note: The number of variables must match the number of values in the tuple, if not, you must use an asterisk to collect the remaining values as a list.
If the number of variables is less than the number of values, you can add an * to the variable name and the values will be assigned to the variable as a list.
Assign the rest of the values as a list called "red":
fruits = ("apple", "banana", "cherry", "strawberry", "raspberry")
(green, yellow, *red) = fruits
print(green)
print(yellow)
print(red)
If the asterisk is added to another variable name than the last, Python will assign values to the variable until the number of values left matches the number of variables left.
Add a list of values the "tropic" variable:
fruits = ("apple", "mango", "papaya", "pineapple", "cherry")
(green, *tropic, red) = fruits
print(green)
print(tropic)
print(red)
You can loop through the tuple items by using a for loop.
Iterate through the items and print the values:
this_tuple = ("apple", "banana", "cherry")
for x in this_tuple:
print(x)
ou can also loop through the tuple items by referring to their index number. Use the
range()
andlen()
functions to create a suitable iterable.
Print all items by referring to their index number:
this_tuple = ("apple", "banana", "cherry")
for i in range(len(this_tuple)):
print(this_tuple[i])
You can loop through the list items by using a while loop. Use the
len()
function to determine the length of the tuple, then start at0
and loop your way through the tuple items by refering to their indexes.Remember to increase the index by
1
after each iteration.
Print all items, using a while loop to go through all the index numbers:
this_tuple = ("apple", "banana", "cherry")
i = 0
while i < len(this_tuple):
print(this_tuple[i])
i = i + 1
To join two or more tuples you can use the + operator.
Join two tuples:
tuple1 = ("a", "b", "c")
tuple2 = (1, 2, 3)
tuple3 = tuple1 + tuple2
print(tuple3)
If you want to multiply the content of a tuple a given number of times, you can use the
*
operator:
Multiply the fruits tuple by 2:
fruits = ("apple", "banana", "cherry")
mytuple = fruits * 2
print(mytuple)
Python has two built-in methods that you can use on tuples.
count()
: Returns the number of times a specified value occurs in a tuple.
index()
: Searches the tuple for a specified value and returns the position of where it was found.
- Introduction
- Variables
- Data Types
- Numbers
- Casting
- Strings
- Booleans
- Operators
- Lists
- Tuple
- Sets
- Dictionaries
- Conditionals
- Loops
- Functions
- Lambda
- Classes
- Inheritance
- Iterators
- Multi‐Processing
- Multi‐Threading
- I/O Operations
- How can I check all the installed Python versions on Windows?
- Hello, world!
- Python literals
- Arithmetic operators and the hierarchy of priorities
- Variables
- Comments
- The input() function and string operators
Boolean values, conditional execution, loops, lists and list processing, logical and bitwise operations
- Comparison operators and conditional execution
- Loops
- [Logic and bit operations in Python]
- [Lists]
- [Sorting simple lists]
- [List processing]
- [Multidimensional arrays]
- Introduction
- Sorting Algorithms
- Search Algorithms
- Pattern-matching Algorithm
- Graph Algorithms
- Machine Learning Algorithms
- Encryption Algorithms
- Compression Algorithms
- Start a New Django Project
- Migration
- Start Server
- Requirements
- Other Commands
- Project Config
- Create Data Model
- Admin Panel
- Routing
- Views (Function Based)
- Views (Class Based)
- Django Template
- Model Managers and Querysets
- Form
- User model
- Authentification
- Send Email
- Flash messages
- Seed
- Organize Logic
- Django's Business Logic Services and Managers
- TestCase
- ASGI and WSGI
- Celery Framework
- Redis and Django
- Django Local Network Access
- Introduction
- API development
- API architecture
- lifecycle of APIs
- API Designing
- Implementing APIs
- Defining the API specification
- API Testing Tools
- API documentation
- API version
- REST APIs
- REST API URI naming rules
- Automated vs. Manual Testing
- Unit Tests vs. Integration Tests
- Choosing a Test Runner
- Writing Your First Test
- Executing Your First Test
- Testing for Django
- More Advanced Testing Scenarios
- Automating the Execution of Your Tests
- End-to-end
- Scenario
- Python Syntax
- Python OOP
- Python Developer position
- Python backend developer
- Clean Code
- Data Structures
- Algorithms
- Database
- PostgreSQL
- Redis
- Celery
- RabbitMQ
- Unit testing
- Web API
- REST API
- API documentation
- Django
- Django Advance
- Django ORM
- Django Models
- Django Views
- Django Rest Framework
- Django Rest Framework serializers
- Django Rest Framework views
- Django Rest Framework viewsets