Python odczyt plik na liście ciągów

# read file in a string list
with open(fileName) as f:
	lineList = f.readlines()
	
Gifted Gannet