How to concatenate (combine) two lists in Python

2 Answers

0 votes
lst1 = ["python", "c#", "java"]
lst2 = ["c", "c++"]

lst3 = lst1 + lst2

print(lst3)


'''
run:

['python', 'c#', 'java', 'c', 'c++']

'''

 



answered Dec 3, 2017 by avibootz
0 votes
list1 = [1, 2, 3, 4]
list2 = [5, 6, 7, 8]
 
list3 = list1 + list2
 
print(list3)
  
  
  
'''
run:
  
[1, 2, 3, 4, 5, 6, 7, 8]
  
'''

 



answered Sep 15, 2023 by avibootz
...