I have a multidimensional array with this format:
['201800053193', 'Jane Doe', 'PAUL', None, '1', None, '0', '2', 'N', 83]
There are about 4500 arrays like this inside of another array.
Im looping through it with this:
for ent in entity_array:
print(ent[9])
But Im getting an error at the end:
in entities
print(ent[9])
IndexError: list index out of range
Element ent[9] does exist for each sub-array. What could be causing this error?
Looping through this does not give an error:
for ent in entity_array:
print(ent)