码迷,mamicode.com
首页 > 其他好文 > 详细

去掉每行的特定字符py脚本

时间:2018-03-06 00:48:53      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:htm   遇到   html   ack   百度   tps   pre   AC   log   

百度下载一个脚本的时候遇到那么一个情况。每行的开头多了一个空格。https://www.0dayhack.com/post-104.html

一个个删就不要说了,很烦。于是就有了下面这个脚本。

#! /usr/env/bin/ python
# by i3ekr


with open("./fj/2.txt","r+") as f:
	lines = f.readlines()
	for i in lines: 
		ok = i.replace(i[0:1],"")
		with open("./ok.txt","a+") as f:
			f.writelines(ok)
			f.close()

  

去掉每行的特定字符py脚本

标签:htm   遇到   html   ack   百度   tps   pre   AC   log   

原文地址:https://www.cnblogs.com/nul1/p/8512025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!