Python

Tuple-Immutable list in Python

We provide effective and economically affordable online training courses for R and Python, click here for more details and course registration !

Python object tuple is a type of list in which the elements can not be modified. It is immutable. When the elements are stored information that are stable, like the area of countries, values of genders, you can use tuples. Tuples are created using parentheses. In the following code, two tuples representing countries and their corresponding areas are created.


#create two tuples
countries = ('USA','Russia','China')
areas= (940,1920,960)
#show tuples
countries
#output
('USA', 'Russia', 'China')
areas
#output
(940, 1920, 960)

Elements of a tuple can be indexed using brackets, same as for a list. But the element can not be modified using indexing method.

#indexing a tuple
#return the first element of a tuple
countries[0]
#output
'USA'
#return the first two elements of a tuple
areas[:2]
#output
(940, 1920)
#trying to modify value of a tuple
countries[2] = 'Japan'
#output 
TypeError: 'tuple' object does not support item assignment

Tuple can be operated with for loop, same as for list.

#for loop with a tuple
for area in areas:
    print(area)
#output 
940
1920
960

Although a tuple is immutable, the values can be changed by re-creating a tuple with the same name of the existing one.


#re-create a tuple with new values
countries = ('Japan','Russia','Mongolia')
#print tuple
countries
#output 
('Japan', 'Russia', 'Mongolia')

For getting more knowledge of Python and a preview of our training course, you can watch Python tutorial videos on our YouTube channel !

wilsonzhang746

Recent Posts

Download R Course source files

Click here to download R Course source files !

2 months ago

Download Python Course source files

Click here to download Python Course Source Files !

2 months ago

How to create a data frame from nested dictionary with Pandas in Python

For online Python training registration, click here ! Pandas provides flexible ways of generating data…

5 months ago

How to delete columns of a data frame in Python

For online Python training registration, click here ! Data frame is the tabular data object…

5 months ago

Using isin() to check membership of a data frame in Python

Click her for course registration ! When a data frame in Python is created via…

5 months ago

How to assign values to Pandas data frame in Python

We provide affordable online training course(via ZOOM meeting) for Python and R programming at fundamental…

5 months ago