print array python line by line code example
Example 1: python read array line by line
for i in yourArray:
print(i)
Example 2: python print array line by line
for word in op:
print word
for i in yourArray:
print(i)
for word in op:
print word