Python: List Vs Tuple

In Python Programming, especially while data manipulation, Lists and Tuples are the often used data structures.

To declare a List [] square brackets are used while Tuples are defined inside round braces ().

The Objects inside a List & Tuple can be of different data types, like, numerical and strings.

Both are ordered data structures, meaning that the objects inside them can be accessed using python indexing style.