≡ Menu

Python Tuple Index

17 Practical Python Tuples Examples

Tuple is similar to List in python language, both are sequential, index based data structure. The main difference between tuples and list is that tuples are immutable i.e. we cannot modify a tuple’s content but List is mutable data structure. Also, tuples uses parenthesis and list uses square brackets. This article will discuss about following [...]

{ 1 comment }