10ListsThis
List List is a collection of values which is ordered and changeable. Allows duplicate members. Nested list is possible ( list containing one more list). They are mutable means no fixed elements.List slices are possible with index numbers (0:2) .Operations used in list -- ' + ' concatenates the list, ' * ' repeats a list a given number of times. Aliasing -- variable's value is assigned to another variable. List methods -- append() , extend() , sort() , map() , split() , etc