demo_list_clear.py:
thislist = ["apple", "banana", "cherry"] thislist.clear() print(thislist)
➜ begtut>python demo_list_clear.py
[]