Understanding Lists In Python
The list is a most versatile datatype available in Python which can be written as a list of comma-separated values (items) between square brackets. Important thing about a list is that items in a list need not be of the same type.
The list type is a container that holds a number of other objects, in a given order. The list type implements the sequence protocol, and also allows you to add and remove objects from the sequence.
Creating a list is as simple as putting different comma-separated values between square brackets.


























No Comment to " Understanding Lists In Python "