Learn practical skills, build real-world projects, and advance your career
# Data Structures
# Lets get started with our first DataStructure i.e LIST
# Let us observe the characteristics  1 by 1 
# Let us learn how to create an empty List

# Did u observe ? a list is represented by [] Brackets.

shopping_cart=[]
# let us create another list with some sample values.

# did u observe? a list can contain duplicates(it is valid)

# did u observe? it is Ok to store multiple with different datatype

# this is called compound nature of list.


shopping_cart=['bread','butter',100,200,200,300,True,5.5,'Milk']