Contact: aviboots(AT)netvision.net.il
39,928 questions
51,861 answers
573 users
lst1 = [1,2,3] lst2 = [4,5,6] import numpy as np arr = list(np.append(lst1, lst2)) print(arr) ''' run: [1, 2, 3, 4, 5, 6] '''