# Homework 22, problem 3: Insert and remove. # # Print the list after each step: # Start # 1. Append a new item. -> print # 2. Insert another at pos 0. -> print # 3. Remove the LAST item. -> print # 4. Remove the item at pos 1. -> print # # Run with: python exercises/22/homework/03-insert-remove.py list = ["apple", "banana", "cherry"] # Your code goes here: