PYTHON LIST
LIST: 1. Lists are used to store multiple items in a single variable. 2.It is mutable. this means that once defined ,they can be changed. 3.List is the most versatile data-type available in Python that can be written as a collection of comma-separated values or items between square brackets. 4.A single list can contain different Data-Types such as integers ,strings ,as well as objects . Example: A=[23,'Hello,23.4,'y''] LIST OPERATORS: 1. '+' OPERATOR FOR CONCATENATION: Concatenation of lists is an operation where the elements of one list are added at the end of another list . EXAMPLE: >>>a=[1,2,3] >>>b=[4,5,6] >>>a+b [1,2,3,4,5,6] ...