在工作中,有可能有一些场景,例如我要替换我txt文档中,所有行中包含test文字的的行内容,例如我们可以替换为空,或者某一个特定字符串呢?不多说,上代码。。
def repalceString():
lineList = []
file = open('mytest.txt','r')
for (num,value) in enumerate(file):
if "test" in value:
lineList.append(num)
file.close()
fileRead = open('mytest.txt','r')
newFile = open("newTest.txt","w")
for (num,value) in enumerate(fileRead):
if num in lineList:
lineContent = value.replace(value,'myceshi')
newFile.write(lineContent)
else:
newFile.write(value)
fileRead.close()
newFile.close()
if __name__ == "__main__":
repalceString()
就是这么简单,有需求就试试吧。
大家如果有感兴趣的方向文章,可以直接给我留言,我会去写你们感兴趣的文章。
想要了解,获取更多和测试相关的知识请添加此群,本群提供App、Web等Ui自动化,App性能测试,接口功能,
接口自动化测试,jemeter、loadrunner工具介绍,静态代码扫描实践;测试理论,
测试流程。测试管理。
App自动化及Web自动化全栈测试:群号544126564(想要更多资料立即加入此群)
领取专属 10元无门槛券
私享最新 技术干货