For loop ignores the first term python
Solution 1:
you can print element-by-element a list like this
for i in arr:
print(i)
i is not an index, but the element itself.
if you want i to be index, you need
for i in range(len(arr)):
print(arr[i])