Back to course home
0% completed
Vote For New Content
Introduction to Tuple in Python
Tuples in Python are immutable sequences, used to store multiple items in a single variable. They are similar to lists but are immutable, meaning their contents cannot be changed after they are created. This immutability makes tuples a reliable data structure for storing data that must not be modified, and they are often used for data integrity and threading where objects need to be unchanged.
Defining a Tuple
Tuples are defined by placing a sequence of values separated by commas, with or without the use of parentheses. This is known as tuple packing.
.....
.....
.....
Like the course? Get enrolled and start learning!