Python Programming B14: Composite Data Types (Part 2)

Python Programming B14: Composite Data Types (Part 2)

9.3 Tuple Type A tuple (tuple) is very similar to a list and is also an ordered sequence type, but the biggest difference is that tuples are immutable objects. Once created, their elements cannot be modified. The immutable nature of tuples makes them particularly suitable for applications that require traceable history, such as recording versions, … Read more