大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
在独山子等地区,都构建了全面的区域性战略布局,加强发展的系统性、市场前瞻性、产品创新能力,以专注、极致的服务理念,为客户提供网站制作、做网站 网站设计制作定制网站开发,公司网站建设,企业网站建设,成都品牌网站建设,全网营销推广,外贸网站建设,独山子网站建设费用合理。>import os
dirname="C:\Users\haier\Desktop\new"def walk(path):
for item in os.listdir(path):
subpath= os.path.join(path, item)
#subpath=subpath.replace('\','\\') print subpath
for i in open(subpath):
pass#print i ffrom=open(subpath,'r')
fto=open(subpath+"1",'w')
while True:
l=ffrom.readline()
if not l:
break if 'endif' in l:
print l
l=l.replace('endif','end')
print l
elif 'endwhile' in l:
print l
l=l.replace('endwhile','end')
print l
# if '"' in l: # print l # l=l.replace('"',''') # print l # print l # tmp=l.split(""") #l=tmp[0]+"'"+tmp[1] fto.write(l)
ffrom.close()
fto.close()
def dele(path):
for item in os.listdir(path):
subpath= os.path.join(path, item)
# subpath=subpath.replace('\','\\')
if os.path.exists(subpath+"1"):
ffrom=open(subpath+"1",'r')
fto=open(subpath,'w')
while True:
l=ffrom.readline()
if not l:
break
fto.write(l)
ffrom.close()
fto.close()
os.remove(subpath+"1")
walk(dirname)
dele(dirname)