“Leer archivos en Python” Código de respuesta

archivo de lectura de Python

with open("file.txt", "r") as txt_file:
  return txt_file.readlines()
Supermavster

Abra el archivo de texto en Python

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

archivo de lectura de Python

txt = open('FILENAME.txt')
txtread = txt.read()
print(txtread)
print(txt.read())
RetroCoder

Python Abrir y leer archivo con

with open('pagehead.section.htm','r') as f:
    output = f.read()
Good Goshawk

Lectura de archivos de Python

fin = open("NAME.txt", 'r')
body = fin.read().split("\n")
line = fin.readline().strip()
Bewildered Baboon

Leer archivos en Python

>>> f = open("test.txt",'r',encoding = 'utf-8')
>>> f.read(4)    # read the first 4 data
'This'

>>> f.read(4)    # read the next 4 data
' is '

>>> f.read()     # read in the rest till end of file
'my first file\nThis file\ncontains three lines\n'

>>> f.read()  # further reading returns empty sting
''
SAMER SAEID

Respuestas similares a “Leer archivos en Python”

Preguntas similares a “Leer archivos en Python”

Más respuestas relacionadas con “Leer archivos en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código