Python membaca file dalam daftar string

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