本文實例講述了Python實現修改文件內容的方法。分享給你們供你們參考,具體以下:python
1 替換文件中的一行shell
1.1 修改原文件ide
① 要把文件中的一行Server=192.168.22.22中的IP地址替換掉,所以把整行替換。函數
data = ''spa
with open('zhai.conf', 'r+') as f:對象
for line in f.readlines():進程
if(line.find('Server') == 0):utf-8
line = 'Server=%s' % ('192.168.1.1',) + '\n'字符串
data += lineget
with open('zhai.conf', 'r+') as f:
f.writelines(data)
② 把原文件的hello替換成world。
#!/usr/local/bin/python
#coding:gbk
import re
old_file='/tmp/test'
fopen=open(old_file,'r')
w_str=""
for line in fopen:
if re.search('hello',line):
line=re.sub('hello','world',line)
w_str+=line
else:
w_str+=line
print w_str
wopen=open(old_file,'w')
wopen.write(w_str)
fopen.close()
wopen.close()
1.2 臨時文件來存儲數據
實現以下功能:將文件中的指定子串 修改成 另外的子串
python 字符串替換能夠用2種方法實現:
①是用字符串自己的方法。str.replace方法。
②用正則來替換字符串: re
方法1:
#!/usr/bin/env python
#_*_ coding:utf-8 _*_
import sys,os
if len(sys.argv)<4 or len(sys.argv)>5:
sys.exit('There needs four or five parameters')
elif len(sys.argv)==4:
print 'usage:./file_replace.py old_text new_text filename'
else:
print 'usage:./file_replace.py old_text new_text filename --bak'
old_text,new_text=sys.argv[1],sys.argv[2]
file_name=sys.argv[3]
f=file(file_name,'rb')
new_file=file('.%s.bak' % file_name,'wb')#文件名以.開頭的文件是隱藏文件
for line in f.xreadlines():#f.xreadlines()返回一個文件迭代器,每次只從文件(硬盤)中讀一行
new_file.write(line.replace(old_text,new_text))
f.close()
new_file.close()
if '--bak' in sys.argv: #'--bak'表示要求對原文件備份
os.rename(file_name,'%s.bak' % file_name) #unchanged
os.rename('.%s.bak' % file_name,file_name) #changed
else:鄭州婦科醫院 http://www.hnzzkd.com/
os.rename(file_name,'wahaha.txt')#此處也能夠將原文件刪除,以便下一語句可以正常執行
os.rename('.%s.bak' % file_name,file_name)
方法2:
open('file2', 'w').write(re.sub(r'world', 'python', open('file1').read()))
2 使用sed
2.1 sed命令:
sed -i "/^Server/ c\Server=192.168.0.1" zhai.conf #-i表示在原文修改
sed -ibak "/^Server/c\Server=192.168.0.1" zhai.conf #會生成備份文件zhai.confbak
2.2 python調用shell的方法
① os.system(command)
在一個子shell中運行command命令,並返回command命令執行完畢後的退出狀態。這其實是使用C標準庫函數system()實現的。這個函數在執行command命令時須要從新打開一個終端,而且沒法保存command命令的執行結果。
② os.popen(command,mode)
打開一個與command進程之間的管道。這個函數的返回值是一個文件對象,能夠讀或者寫(由mode決定,mode默認是’r’)。若是mode爲’r’,可使用此函數的返回值調用read()來獲取command命令的執行結果。
③ commands.getstatusoutput(command)
使用os. getstatusoutput ()函數執行command命令並返回一個元組(status,output),分別表示command命令執行的返回狀態和執行結果。對command的執行其實是按照{command;} 2>&1的方式,因此output中包含控制檯輸出信息或者錯誤信息。output中不包含尾部的換行符。
④ subpes.call(["some_command","some_argument","another_argument_or_path"])
subpes.call(command,shell=True)**
⑤ subpes.Popen(command, shell=True)
若是command不是一個可執行文件,shell=True不可省。
使用subpes模塊能夠建立新的進程,能夠與新建進程的輸入/輸出/錯誤管道連通,並能夠得到新建進程執行的返回狀態。使用subpes模塊的目的是替代os.system()、os.popen*()、commands.*等舊的函數或模塊。
最簡單的方法是使用clase subpes.Popen(command,shell=True)。Popen類有Popen.stdin,Popen.stdout,Popen.stderr三個有用的屬性,能夠實現與子進程的通訊。
將調用shell的結果賦值給python變量
代碼以下:
handle = subpes.Popen(command, shell=True, stdout=subpes.PIPE)
print handle.communicate()[0]