“Python Leia valores do arquivo” Respostas de código

python faça um arquivo txt

file = open("text.txt", "w") 
file.write("Your text goes here") 
file.close() 
'r' open for reading (default)
'w' open for writing, truncating the file first
'x' open for exclusive creation, failing if the file already exists
'a' open for writing, appending to the end of the file if it exists
Kodi4444

Arquivo de texto aberto em Python

f=open("Diabetes.txt",'r')
f.read()
Grieving Goshawk

Python Leia valores do arquivo

file = open('test.txt')
for line in file:
    fields = line.strip().split()
    print fields[0], fields[1], fields[2], fields[3]
Defiant Dove

Respostas semelhantes a “Python Leia valores do arquivo”

Perguntas semelhantes a “Python Leia valores do arquivo”

Mais respostas relacionadas para “Python Leia valores do arquivo” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código