zoukankan      html  css  js  c++  java
  • python学习

    下面这个例子是我写了个文件替换的小程序。替换所有.html文件里的图片的路径

    import os
    import re
    t = re.compile(r'/?static/|/?media/') #re.compile

    template = '/home/laowangpython/'
    for root, dirs, files in os.walk(template):
        for f in files:
            if f.endswith('.html'):
                tihuan = 'http://www.cnpythoner.com/'
                filename = '%s'%(os.path.join(root,f))
                print filename
                f_a = file(filename,'r')
                info = []
                for i in f_a:
                    content =  t.sub(tihuan,i)
                    info.append(content)
                finfo = "".join(info)
                b = file(filename,'w')
                b.write(finfo)


    原创文章:http://www.cnpythoner.com/post/17.html,转载请保留,谢谢!

  • 相关阅读:
    hdu-2612-Find a way
    poj-1426-Find The Multiple
    POJ-2251-Dungeon Master
    树的遍历
    前序和中序+后序和中序
    哈夫曼树
    平衡二叉树
    队列和优先队列
    1213
    1163
  • 原文地址:https://www.cnblogs.com/wcLT/p/4269460.html
Copyright © 2011-2022 走看看