Result Size: 625 x 571
โ€‹x
 
list1 = ["a", "b" , "c"]
list2 = [1, 2, 3]
โ€‹
list1.extend(list2)
print(list1)
โ€‹
['a', 'b', 'c', 1, 2, 3]