I was reading the Python documentation on lists and saw:
list.extend(L)
Extend the list by appending all the items in the given list. Equivalent to:a[len(a):] = L.
I was wondering where I could read about the :
colon to fully understand it. Python documentation for 3.4 would be very helpful.