9 lines
323 B
Python
9 lines
323 B
Python
|
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')
|