jssclpz
0
Q:

merge two lists

list1 = ["a", "b" , "c"]
list2 = [1, 2, 3]

list1.extend(list2)
print(list1)
4
# Makes list1 longer by appending the elements of list2 at the end.
list1.extend(list2)
4

New to Communities?

Join the community