Python -Liste löschen Sie den Listeninhalt frei

thislist = ["apple", "banana", "cherry"]
thislist.clear()
print(thislist)
Programmer of empires