Python – Tuples – A walk through with Examples
Another sequence type, Python provides is Tuple. Unlike Lists, Tuples are immutable; that means, Tuples doesn’t allow to modify the data. In this article, I am going to explain, how to create & access data from Tuples. Create a tuple in Python We can create tuple in Python using comma “,” or parentheses (“()”) or […]