Akhil Narayanan Nair home

Python - List Empty List

================

list = [‘a’, ‘b’, ‘c’, ‘d’, ‘e’, ‘f’]

print(list)

list[1:3] = []

print(list)