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