EN
Python - clear list
0
points
In this article, we would like to show you how to clear the list in Python.
Quick solution:
my_list = ['A', 'B', 'C']
my_list.clear()
print(my_list) # []