
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Why are there separate tuple and list data types in Python?
Separate tuple and list data types are provided because both have different roles. Tuples are immutable, whereas lists are mutable. That means, Lists can be modified, whereas Tuple cannot.
Tuples are sequences, just like lists. The differences between tuples and lists are, the tuples cannot be changed unlike lists and tuples use parentheses, whereas lists use square brackets.
Let’s see how Lists and Tuples are created.
Create a basic Tuple
Example
Let us first create a basic Tuple with integer elements and then move towards Tuples within a Tuple
# Creating a Tuple mytuple = (20, 40, 60, 80, 100) # Displaying the Tuple print("Tuple = ",mytuple) # Length of the Tuple print("Tuple Length= ",len(mytuple))
Output
Tuple = (20, 40, 60, 80, 100) Tuple Length= 5
Create a Python List
Example
We will create a list with 10 integer elements and display it. The elements are enclosed by square brackets. With that, we have also displayed the length of the list and how we can access specific elements using the square brackets −
# Create a list with integer elements mylist = [25, 40, 55, 60, 75, 90, 105, 130, 155, 180]; # Display the list print("List = ",mylist) # Display the length of the list print("Length of the List = ",len(mylist)) # Fetch 1st element print("1st element = ",mylist[0]) # Fetch last element print("Last element = ",mylist[-1])
Output
List = [25, 40, 55, 60, 75, 90, 105, 130, 155, 180] Length of the List = 10 1st element = 25 Last element = 180
Can we update Tuple Values?
Example
As said above, Tuples are immutable and cannot be updated. But, we can convert the Tuple to List and then update it.
Let’s see an example −
myTuple = ("John", "Tom", "Chris") print("Initial Tuple = ",myTuple) # Convert the tuple to list myList = list(myTuple) # Changing the 1st index value from Tom to Tim myList[1] = "Tim" print("Updated List = ",myList) # Convert the list back to tuple myTuple = tuple(myList) print("Tuple (after update) = ",myTuple)
Output
Initial Tuple = ('John', 'Tom', 'Chris') Updated List = ['John', 'Tim', 'Chris'] Tuple (after update) = ('John', 'Tim', 'Chris')
- Related Articles
- Get tuple element data types in Python
- Why python returns tuple in list instead of list in list?
- What are the differences between list, sequence and slice data types in Python?
- Check if tuple and list are identical in Python
- Why JavaScript Data Types are Dynamic?
- What are compound data types and data structures in Python?
- Difference Between List and Tuple in Python
- How many types of inheritance are there in Python?
- Which data types are immutable in Python?
- Flatten tuple of List to tuple in Python
- Tuple Data Type in Python
- What are Standard Data Types in Python 3?
- Python – Cross Pairing in Tuple List
- Adding Tuple to List and vice versa in Python
- Create a tuple from string and list in Python
