“Agregar archivo para enumerar Python” Código de respuesta

Agregar una línea a un archivo de texto Python

# Open a file with access mode 'a'
file_object = open('sample.txt', 'a')
 
# Append 'hello' at the end of file
file_object.write('hello')
 
# Close the file
file_object.close()
Breakable Beaver

Agregar archivo para enumerar Python

list=[]
f = open('file.txt','r')

for line in f:
    list.append(line.rstrip())  #if you want the \n replace rstrip by strip
Unsightly Unicorn

Respuestas similares a “Agregar archivo para enumerar Python”

Preguntas similares a “Agregar archivo para enumerar Python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código