“Dołącz plik do listy Python” Kod odpowiedzi

Dodaj wiersz do pliku tekstowego 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

Dołącz plik do listy 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

Odpowiedzi podobne do “Dołącz plik do listy Python”

Pytania podobne do “Dołącz plik do listy Python”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu