List Python

L = [1, 2]
L.extend([3,4,5])      # append multiple items
print L