Quick actions

cmd+k|ctrl+k

Navigation

Languages

List Slicing

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-03T22:40:05.430497Z

Updated

2025-11-03T22:40:05.430497Z

# 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