demo_list_clear.py:
thislist = ["apple", "banana", "cherry"] thislist.clear() print(thislist)
C:\Users\My Name>python demo_list_clear.py
[]