You could use the clear() method of list which is parallel to clear() of dict, set, deque and other mutable in Python 3.3 container types:
alist.clear() # removes all items from alist (equivalent to del alist[:])
The same can also be achieved with alist *= 0.