Is there a a better way to remove the last N elements of a list.
for i in range(0,n): lst.pop( )
Just try to del it like this.
del list[-n:]