У меня есть list1=[1,2,3,3,4]
и еще один list2=[2,4,5,6,7]
. Я хочу произвести list3=[[1,2],[2,4],[3,5],[3,6],[4,7]]
n=int(input())
ls=[]
ls1=[]
ls2=[]
ls3=[]
ls=list(map(int,input().split()))
ls1=list(map(int,input().split()))
for i in ls:
for j in ls1:
if i==j
a=ls.index(i)
b=ls1.index(j)
ls2.apppend(a)
ls3.append(b)
ls4=[i,j for i,j in zip(ls2,ls3)]