- 3
Help me to fix the error???
a = int(input()) o = [] for i in range(a): i = int(input()) for j in range(i): j = input().split() o = o+j for k in o: s = o.count(k) if s>1: print(k)
4 Antworten
+ 5
Double use of i and j
+ 2
Well first you say i in for loop then you try to change it by making it equal to input same for j
just use some other name to define a for loop
+ 1
👍👍
0
Explain me plz?