Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
lst_lst = [[1,2,3],[4,5,6],[7,8],[9, 0]] lst = [] for i in range(len(lst_lst)): for j in range (len(lst_lst[i])): lst.append(lst_lst[i][j]) print(lst) ''' run: [1, 2, 3, 4, 5, 6, 7, 8, 9, 0] '''