We are explaining about tuple. it's very important topics so i have taken one example to explain
Python Tuple
----------------------
A tuple is a collection which is ordered and unchangeable. In Python tuples are written with round brackets.
Access Tuple Items
-------------------------------
You can access tuple items by referring to the index number, inside square brackets:
Tuple Actions:
=======================
Python tuple Creating
Python tuple Updating
Python tuple Deleting
Python tuple Accessing Elements
Change Tuple Values
----------------------------------
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.