List is the most versatile python data structure and stores an ordered sequence of elements just like your shopping list or to-do-list.In Python, Lists are mutable
,meaning that the elements can be altered unlike tuples
or even strings
.These elements of a list
are called items
and can be any data type.