programming-examples/python/Input_Output/Python program to read a file line by line store it into an array.py

9 lines
323 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
def file_read(fname):
content_array = []
with open(fname) as f:
#Content_list is the list that contains the read lines.
for line in f:
content_array.append(line)
print(content_array)
file_read('test.txt')