Tuples in Python

Tuples in python

A tuple is an immutable list means non-changeable list. Tuples are ordered in nature. Values can be accessed by index. Various operations can be performed like Iteration, looping , concatenation. Used when data is fixed and not require any changes. Syntax Accessing values of tuples You cannot modify the tuples as they are immutable Assigning… Read More