With lists, it is also possible to assign to a slice, even if the value assigned has a different length. For example,

example = ['a', 'b', 'c', 'd']
example[:2] = ['e', 'f']
example[1:3] = ['g', 'h', 'i']
example[2:] = []

changes the list example from ['a', 'b', 'c', 'd'] first to ['e', 'f', 'c', 'd'], then to ['e', 'g', 'h', 'i', 'd'], and finally to ['e', 'g'].

Fill in the placeholders so that the actual outputs match the expected outputs.