1# tests list.clear
2x = [1, 2, 3, 4]
3x.clear()
4print(x)
5