Deep Dive into Tuples — Python

Tuples are read-only lists whereafter it is created with some elements you cannot add any elements into it. Hence it is called Read Only Lists. Following is an example showing a tuple and how it behaves when you add an element after it is created. Github link: https://github.com/bvvkrishna/Tuples/blob/master/Tuple%20Basic%20Example.ipynb Can Tuples be modified? Tuples can also be … Continue reading Deep Dive into Tuples — Python