📅  最后修改于: 2022-03-11 14:47:21.351000             🧑  作者: Mango
def readFile(fileName):
fileObj = open(fileName, "r") #opens the file in read mode
words = fileObj.read().splitlines() #puts the file into an array
fileObj.close()
return words