EN
Python - extend list
0
points
In this article, we would like to show you how to extend list in Python.
Quick solution:
list1 = ['A', 'B']
list2 = ['C', 'D']
list1.extend(list2)
print(list1) # ['A', 'B', 'C', 'D']
Practical example
In this example, we use extend()
method to extend the list1
by appending elements from the list2
at the end of list1
.
list1 = ['A', 'B']
list2 = ['C', 'D']
list1.extend(list2)
print(list1) # ['A', 'B', 'C', 'D']
Output:
['A', 'B', 'C', 'D']