テキストファイルを開き、各行の最後に文字列を追加する必要があります。Pythonファイル内の各行に文字列を追加します。
これまでのところ:
appendlist = open(sys.argv[1], "r").read()
テキストファイルを開き、各行の最後に文字列を追加する必要があります。Pythonファイル内の各行に文字列を追加します。
これまでのところ:
appendlist = open(sys.argv[1], "r").read()
s = '123'
with open('out', 'w') as out_file:
with open('in', 'r') as in_file:
for line in in_file:
out_file.write(line.rstrip('\n') + s + '\n')
がそれに応じて変更されました。 –
私はこれを試しましたが、文字列を追加する代わりに別の行に置きます。その行にはipがあることに注意してください。 127.0.0.1(return/enter)文字列ではなく、127.0.0.1文字列にする必要があります。 – Pcntl
right、undated again –
def add_str_to_lines(f_name, str_to_add):
with open(f_name, "r") as f:
lines = f.readlines()
for index, line in enumerate(lines):
lines[index] = line.strip() + str_to_add + "\n"
with open(f_name, "w") as f:
for line in lines:
f.write(line)
if __name__ == "__main__":
str_to_add = " foo"
f_name = "test"
add_str_to_lines(f_name=f_name, str_to_add=str_to_add)
with open(f_name, "r") as f:
print(f.read())
文字列を構成する+
オペレータが遅い使用して、覚えておいてください。代わりにリストに参加してください。
output = ""
file_name = "testlorem"
string_to_add = "added"
with open(file_name, 'r') as f:
file_lines = [''.join([x.strip(), string_to_add, '\n']) for x in f.readlines()]
with open(file_name, 'w') as f:
f.writelines(file_lines)
fの '' 'の['' .join([x.strip()、string_to_add、 '\ n'])' ''? – lerner
「オープン」のマニュアルを最初に読んでください。 – njzk2