mas1=[1,2,3] mas2=[11,22,33] mas=[] for i in range(len(mas1)): mas.append(mas1[i]) mas.append(mas2[i]) print(mas)