“Python lee valores del archivo” Código de respuesta

Python hace un archivo 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

Abra el archivo de texto en Python

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

Python lee valores del archivo

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

Respuestas similares a “Python lee valores del archivo”

Preguntas similares a “Python lee valores del archivo”

Más respuestas relacionadas con “Python lee valores del archivo” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código