📜  如何在python代码示例中将文件读入数组

📅  最后修改于: 2022-03-11 14:47:21.351000             🧑  作者: Mango

代码示例1
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