4. What are List and Tuple data types of Python ?

List and Tuple are compound data types in python. They are like arrays but can store values of more than one data types.

List is mutable and is initialised as list() or []

Tuple is immutable and is initialised as tuple() or ()