29- Tuple Data Type in Python | Python Tutorial in Hindi

Опубликовано: 17 Февраль 2026
на канале: Digital EduComp
148
8

Python Tuple:
Tuple is an ordered sequence of items same as a list. The only difference is that tuples are immutable. Tuples once created cannot be modified.
Tuples are used to write-protect data and are usually faster than lists as they cannot change dynamically.
It is defined within parentheses () where items are separated by commas.