a = ['apple', 'ice cream', 'watermelon', 'chips', 'hotdogs', 'hotpot']
while a:
    del a[-1]
    print(a)