文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>文本文件内容加入制定内容

文本文件内容加入制定内容

时间:2010-10-13  来源:reesun

import os

#add expand
src_file = raw_input("source path: ")
expand = raw_input("expand: ")

#rename
bak_src = src_file + ".bak"
os.rename(src_file, bak_src)

input = open(bak_src)
#print input
output = open(src_file, 'w')

while True:
    line = input.readline()
    if line:
# print line;
        
        line = (line.strip()) + expand
# print line
        output.write(line)
        output.write("\n")
    else:
        break
output.close()
input.close()

print "OK"
 


相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载