What is a List in Python?
A list in Python is a built-in data type that can store multiple items of any data types such as integers, strings,tuples and even lists, under a single name. It is mutable i.e. you can add, edit, update and delete elements ...