Python – Is Tuples Read-Only ???

Tuples in Python are read only lists which means after a tuple is created it does not allow any of its elements to be modified. In this post we are going to see that tuple elements can be modified. Following are the examples.  From the above example it is evident that we are able to update … Continue reading Python – Is Tuples Read-Only ???