Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
lst1 = ["python", "c#", "java"] lst2 = ["c", "c++"] lst3 = lst1 + lst2 print(lst3) ''' run: ['python', 'c#', 'java', 'c', 'c++'] '''
list1 = [1, 2, 3, 4] list2 = [5, 6, 7, 8] list3 = list1 + list2 print(list3) ''' run: [1, 2, 3, 4, 5, 6, 7, 8] '''