In Python tuples are very similar to lists, however, unlike lists they are immutable meaning they can not be changed. You would use tuples to present things that shouldn’t be changed, such as days of the week, or dates on a calendar.
You’ll have an intuition of how to use tuples based on what you’ve learned about lists. We can treat them very similarly with the major distinction being that tuples are immutable.
Examples of tuples:-
(1,2,3), (‘jack’, 21 , ‘mike’ ) … #tuples are enclosed in parenthesis.
# Use .index to enter a value and return the index
e.g. t.index(‘value’)
# Use .count to count the number of times a value appears
t.count(‘value’)
When to use Tuples
You may be wondering, “Why bother using tuples when they have fewer available methods?” To be honest, tuples are not used as often as lists in programming, but are used when immutability is necessary. If in your program you are passing around an object and need to make sure it does not get changed, then a tuple becomes your solution. It provides a convenient source of data integrity.
You should now be able to create and use tuples in your programming as well as have an understanding of their immutability.
