“Как прочитать файл в массив в Python” Ответ

Как прочитать файл в массив в Python

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
TheRubberDucky

Python Read Text File в список

text_file = open("filename.dat", "r")
lines = text_file.readlines()
print lines
print len(lines)
text_file.close()
Frightened Frog

Ответы похожие на “Как прочитать файл в массив в Python”

Вопросы похожие на “Как прочитать файл в массив в Python”

Смотреть популярные ответы по языку

Смотреть другие языки программирования