Pythonでテキストファイルの特定の行を編集する


88

次の内容を含むテキストファイルがあるとします。

Dan
Warrior
500
1
0

そのテキストファイルの特定の行を編集する方法はありますか?今私はこれを持っています:

#!/usr/bin/env python
import io

myfile = open('stats.txt', 'r')
dan = myfile.readline()
print dan
print "Your name: " + dan.split('\n')[0]

try:
    myfile = open('stats.txt', 'a')
    myfile.writelines('Mage')[1]
except IOError:
        myfile.close()
finally:
        myfile.close()

はい、私はそれmyfile.writelines('Mage')[1]が間違っていることを知っています。しかし、あなたは私の主張を理解しますよね?WarriorをMageに置き換えて、2行目を編集しようとしています。しかし、私もそれを行うことができますか?


1
この投稿はあなたが探しているものをカバーしていると思います:stackoverflow.com/questions/1998233/…–
カイルワイルド

1
この種のことを頻繁に行う必要がある場合は、このファイルをテキストからbdbや他のbdbのようなものに変換することを検討することをお勧めします。
ニックバスティン2011年

回答:


125

あなたはこのようなことをしたい:

# with is like your try .. finally block in this case
with open('stats.txt', 'r') as file:
    # read a list of lines into data
    data = file.readlines()

print data
print "Your name: " + data[0]

# now change the 2nd line, note that you have to add a newline
data[1] = 'Mage\n'

# and write everything back
with open('stats.txt', 'w') as file:
    file.writelines( data )

これは、「2行目を変更」のようなことをファイルで直接行うことができないためです。ファイルの一部のみを上書き(削除は不可)できます。つまり、新しいコンテンツは古いコンテンツのみをカバーします。したがって、2行目に「Mage」と書いた場合、結果の行は「Mageior」になります。


2
こんにちはJochen、「with open(filename、mode)」というステートメントも、プログラムが終了した後、暗黙的にファイル名を閉じますよね?
ラドゥ2014年

@Gabriel Thx、これは注意することが重要ですが、ファイルステートメントとしてwith ...はまだ使用していません。Pythonicであろうとなかろうと、私はそれが好きではありません:)
Radu 2015

@Raduそれはそれに慣れるの問題です。以前はを介して開いたファイルを手動で閉じることもありましたがclose.withブロックを使用する方がはるかにクリーンであることがわかりました。
ガブリエル

5
これは小さなファイルに適したソリューションであると想定するのは正しいですか?そうしないと、データを格納するためだけに大量のメモリが必要になる可能性があります。また、1回の編集でも全部書き直す必要があります。
Arindam Roychowdhury 2016

11
悪い..20Gbファイルがある場合はどうなりますか?
ブランズDs 2017

21

fileinputを使用してインプレース編集を行うことができます

import fileinput
for  line in fileinput.FileInput("myfile", inplace=1):
    if line .....:
         print line

19
def replace_line(file_name, line_num, text):
    lines = open(file_name, 'r').readlines()
    lines[line_num] = text
    out = open(file_name, 'w')
    out.writelines(lines)
    out.close()

その後:

replace_line('stats.txt', 0, 'Mage')

9
これにより、ファイルのコンテンツ全体がメモリにロードされますが、ファイルが巨大な場合は適切ではない可能性があります。
Steve Ng

@SteveNg気付いた問題の解決策はありますか?この答えと認められた1の両方がメモリにファイル全体を読み込むに依存している
Blupon

14

あなたは2つの方法でそれを行うことができます、あなたの要件に合うものを選んでください:

方法I.)行番号を使用して置き換える。enumerate()この場合、組み込み関数を使用できます。

まず、読み取りモードで、変数内のすべてのデータを取得します

with open("your_file.txt",'r') as f:
    get_all=f.readlines()

次に、ファイルに書き込みます(列挙が実行される場所)

with open("your_file.txt",'w') as f:
    for i,line in enumerate(get_all,1):         ## STARTS THE NUMBERING FROM 1 (by default it begins with 0)    
        if i == 2:                              ## OVERWRITES line:2
            f.writelines("Mage\n")
        else:
            f.writelines(line)

方法II。)置換するキーワードを使用する:

読み取りモードでファイルを開き、内容をリストにコピーします

with open("some_file.txt","r") as f:
    newline=[]
    for word in f.readlines():        
        newline.append(word.replace("Warrior","Mage"))  ## Replace the keyword while you copy.  

「Warrior」は「Mage」に置き換えられたため、更新されたデータをファイルに書き込みます。

with open("some_file.txt","w") as f:
    for line in newline:
        f.writelines(line)

これは、両方の場合の出力になります。

Dan                   Dan           
Warrior   ------>     Mage       
500                   500           
1                     1   
0                     0           

3

テキストに個人が1人しか含まれていない場合:

import re

# creation
with open('pers.txt','wb') as g:
    g.write('Dan \n Warrior \n 500 \r\n 1 \r 0 ')

with open('pers.txt','rb') as h:
    print 'exact content of pers.txt before treatment:\n',repr(h.read())
with open('pers.txt','rU') as h:
    print '\nrU-display of pers.txt before treatment:\n',h.read()


# treatment
def roplo(file_name,what):
    patR = re.compile('^([^\r\n]+[\r\n]+)[^\r\n]+')
    with open(file_name,'rb+') as f:
        ch = f.read()
        f.seek(0)
        f.write(patR.sub('\\1'+what,ch))
roplo('pers.txt','Mage')


# after treatment
with open('pers.txt','rb') as h:
    print '\nexact content of pers.txt after treatment:\n',repr(h.read())
with open('pers.txt','rU') as h:
    print '\nrU-display of pers.txt after treatment:\n',h.read()

テキストに複数の個人が含まれている場合:

インポート再

# creation
with open('pers.txt','wb') as g:
    g.write('Dan \n Warrior \n 500 \r\n 1 \r 0 \n Jim  \n  dragonfly\r300\r2\n10\r\nSomo\ncosmonaut\n490\r\n3\r65')

with open('pers.txt','rb') as h:
    print 'exact content of pers.txt before treatment:\n',repr(h.read())
with open('pers.txt','rU') as h:
    print '\nrU-display of pers.txt before treatment:\n',h.read()


# treatment
def ripli(file_name,who,what):
    with open(file_name,'rb+') as f:
        ch = f.read()
        x,y = re.search('^\s*'+who+'\s*[\r\n]+([^\r\n]+)',ch,re.MULTILINE).span(1)
        f.seek(x)
        f.write(what+ch[y:])
ripli('pers.txt','Jim','Wizard')


# after treatment
with open('pers.txt','rb') as h:
    print 'exact content of pers.txt after treatment:\n',repr(h.read())
with open('pers.txt','rU') as h:
    print '\nrU-display of pers.txt after treatment:\n',h.read()

個人の「仕事」がテキスト内で一定の長さである場合、目的の個人の「仕事」に対応するテキストの部分のみを変更できます。これは、送信者の「仕事」と同じ考えです。

しかし、私によれば、cPickleのファイルに記録された辞書に個人の特性を入れる方がよいでしょう。

from cPickle import dump, load

with open('cards','wb') as f:
    dump({'Dan':['Warrior',500,1,0],'Jim':['dragonfly',300,2,10],'Somo':['cosmonaut',490,3,65]},f)

with open('cards','rb') as g:
    id_cards = load(g)
print 'id_cards before change==',id_cards

id_cards['Jim'][0] = 'Wizard'

with open('cards','w') as h:
    dump(id_cards,h)

with open('cards') as e:
    id_cards = load(e)
print '\nid_cards after change==',id_cards

2

私は今晩ファイルの作業を練習していて、Jochenの答えに基づいて、繰り返し/複数回使用するためのより優れた機能を提供できることに気付きました。残念ながら、私の答えは大きなファイルを扱う問題には対処していませんが、小さなファイルでの作業を楽にしてくれます。

with open('filetochange.txt', 'r+') as foo:
    data = foo.readlines()                  #reads file as list
    pos = int(input("Which position in list to edit? "))-1  #list position to edit
    data.insert(pos, "more foo"+"\n")           #inserts before item to edit
    x = data[pos+1]
    data.remove(x)                      #removes item to edit
    foo.seek(0)                     #seeks beginning of file
    for i in data:
        i.strip()                   #strips "\n" from list items
        foo.write(str(i))

0

これを行う最も簡単な方法です。

fin = open("a.txt")
f = open("file.txt", "wt")
for line in fin:
    f.write( line.replace('foo', 'bar') )
fin.close()
f.close()

それがあなたのために働くことを願っています。


-1
#read file lines and edit specific item

file=open("pythonmydemo.txt",'r')
a=file.readlines()
print(a[0][6:11])

a[0]=a[0][0:5]+' Ericsson\n'
print(a[0])

file=open("pythonmydemo.txt",'w')
file.writelines(a)
file.close()
print(a)

1
Stack Overflowへようこそ!非常に古く、すでに回答済みの質問に回答していることに注意してください。これが答え方のガイドです。
–help

@ ajay-jaiswal質問を指定し、再現可能な最小限の例と表示されるエラーメッセージを提供してください。コードを投稿しましたが、実際の質問は投稿していません。
dmitryro

-2

file_name次のような名前のファイルがあるとします。

this is python
it is file handling
this is editing of line

2行目を「変更が完了しました」に置き換える必要があります。

f=open("file_name","r+")
a=f.readlines()
for line in f:
   if line.startswith("rai"):
      p=a.index(line)
#so now we have the position of the line which to be modified
a[p]="modification is done"
f.seek(0)
f.truncate() #ersing all data from the file
f.close()
#so now we have an empty file and we will write the modified content now in the file
o=open("file_name","w")
for i in a:
   o.write(i)
o.close()
#now the modification is done in the file
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.