I have two lists:
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
Need to find the overlapping elements
I am doing my homework.
if (a[i]==b[i]):
print(i)```
But I got this error:
IndexError: list index out of range,
I expect result:
1 , 2 , 3 , 5 , 8 , 13