Using the del keyword can delete list objects in Python. It will delete the whole list.
del thislistExample del list Python
Simple example code print list after deleted it.
this_list = ["apple", "banana", "cherry"]
del this_list
print(this_list)Output:

You can also remove elements from a list with del statements. Just pass the index value inside the brackets [].
l = list(range(6))
print(l)
del l[0]
print(l)
Output:
[0, 1, 2, 3, 4, 5]
[1, 2, 3, 4, 5]
Do comment if you have any doubts or suggestions on this Python list topic.
Note: IDE: PyCharm 2021.3.3 (Community Edition)
Windows 10
Python 3.10.1
All Python Examples are in Python 3, so Maybe its different from python 2 or upgraded versions.