Nzec error

test=int(input())
for q in range(test):
length=int(input())
lst1=[int(m) for m in input().split()]
lst2=[int(x) for x in input().split()]
nzec error coming in 3rd line

format your code please :slight_smile:
just use three ticks.
and use this method to take an input of list in python.

l=list(map(int,input().split()))
2 Likes