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