The list is one of the Data structure in python
it will be created different ways as shown below
listname=[]
listname=list()
lisstname=[1,2,....]
some characteristics & properties of a list :
list Accessing:
once the list is created we can access list element by corresponding index position
list1=[11,22,33,44,55]
list1[0]
access the first element 11
list Traversing: