“Como ler um arquivo em matriz em python” Respostas de código

Como ler um arquivo em matriz em 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

arquivo de texto de leitura python em uma lista

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

Respostas semelhantes a “Como ler um arquivo em matriz em python”

Perguntas semelhantes a “Como ler um arquivo em matriz em python”

Procure respostas de código populares por idioma

Procurar outros idiomas de código