“archivos python” Código de respuesta

Abra el archivo de texto en Python

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

archivos de python

f = open('filename.txt', 'r') #open for reading (default)
f = open('filename.txt', 'w') #open for writing, truncating the file first
f = open('filename.txt', 'x') #open for exclusive creation, failing if the file already exists
f = open('filename.txt', 'a') #open for writing, appending to the end of the file if it exists
Jsandtrooper

Archivo de Python abierto

#there are many modes you can open files in. r means read.
file = open('C:\Users\yourname\files\file.txt','r')
text = file.read()

#you can write a string to it, too!
file = open('C:\Users\yourname\files\file.txt','w')
file.write('This is a typical string')

#don't forget to close it afterwards!
file.close()
Dr. Hippo

Lectura de archivos de Python

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

archivos python

with open("filename.txt", "w") as file:
  file.write("new line in new/now cleared document")
with open("filename.txt", "a") as file:
  file.write("This line is added to the now 2 line document")
with open("filename.txt", "r") as file:
  lines = file.readlines() # ["new line in new/now cleared document\n", "This...
fmoeran

archivo de python

>>> f = open('workfile', 'w')
Shy-ny Star-ling

Respuestas similares a “archivos python”

Preguntas similares a “archivos python”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código