6. Concatenation and Repetition

Also, as with strings, the + operator concatenates lists. Similarly, the * operator repeats the items in a list a given number of times.

It is important to see that these operators create new lists from the elements of the operand lists. If you concatenate a list with 2 items and a list with 4 items, you will get a new list with 6 items (not a list with two sublists). Similarly, repetition of a list of 2 items 4 times will give a list with 8 items.

One way for us to make this more clear is to run a part of this example in codelens. As you step through the code, you will see the variables being created and the lists that they refer to. Pay particular attention to the fact that when new_list is created by the statement new_list = fruit + num_list, it refers to a completely new list formed by making copies of the items from fruit and num_list. You can see this very clearly in the codelens object diagram. The objects are different.

(chp09_concatid)

Note that concatenation is similar to the append method, but with the important difference that append only modifies the original list. It does not create a new list as concatenation does.

Also be aware that you can only concatenate lists together. So if you wanted to concatenate the fruit list above with a string like "kiwi", you would need to put it in square brackets:

more_fruit = fruit + ["kiwi"]

Check your understanding