python read file as array of lines code example
Example 1: python read file in string list
# read file in a string list
with open(fileName) as f:
lineList = f.readlines()
Example 2: python read array line by line
for i in yourArray:
print(i)