How to empty a list in Python? - by DrFalk3n It seems so "dirty" emptying a list in this way: while len(alist) > 0 : alist.pop() Does a clear way exist to do that? Read the article