List Slicing
# List Slicing
amazon_cart = [ # list are mutable other then Strings are immutable
'notebooks',
'pens',
'sunglasses',
'toys',
'grapes'
]
amazon_cart[0] = 'laptop'
new_cart = amazon_cart[:]
new_cart[0] = 'gum'
print(amazon_cart)
print(new_cart)
INFO