python修改⽂件内容3种⽅法,Python实现修改⽂件内容的⽅法
分析
本⽂实例讲述了Python实现修改⽂件内容的⽅法。,具体如下:
1 替换⽂件中的⼀⾏
1.1 修改原⽂件
① 要把⽂件中的⼀⾏Server=192.168.22.22中的IP地址替换掉,因此把整⾏替换。
data = ''
with open('f', 'r+') as f:
for line adlines():
if(line.find('Server') == 0):
line = 'Server=%s' % ('192.168.1.1',) + 'n'
data += line
with open('f', '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种⽅法实现:
①是⽤字符串本⾝的⽅法。place⽅法。
②⽤正则来替换字符串: re
⽅法1:
#!/usr/bin/env python
#_*_ coding:utf-8 _*_
import sys,os
if len(sys.argv)<4 or len(sys.argv)>5:
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 adlines():#f.xreadlines()返回⼀个⽂件迭代器,每次只从⽂件(硬盘)中读⼀⾏new_file.place(old_text,new_text))
f.close()
new_file.close()
if '--bak' in sys.argv: #'--bak'表⽰要求对原⽂件备份
else:
⽅法2:
open('file2', 'w').write(re.sub(r'world', 'python', open('file1').read()))
2 使⽤sed
2.1 sed命令:
sed -i "/^Server/ cServer=192.168.0.1" f #-i表⽰在原⽂修改
sed -ibak "/^Server/cServer=192.168.0.1" f #会⽣成备份⽂件fbak
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命令的执⾏结果。writelines方法的参数可以是
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论