python将内容写入文件指定位置_python 将一个文件中内容添加到另一个文件指定位置…

  • Post author:
  • Post category:python

目的:将文件test.txt内容添加到文件test.html指定字符串的前面

文件内容:

test.txt内容如下:

10.110.210.310.410.510.610.710.810.910.1010.1110.1210.1310.1410.1510.1610.1710.1810.1910.2010.2110.22

text.html内容如下:

无标题文档

Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8 Q9 Q10 Q11 Q12 Q13 Q14 Q15 Q16 Q17 Q18 Q19 Q20 Q21 Q22
10.1 10.2 10.3 10.4 10.5 10.6 10.7 10.8 10.9 10.10 10.11 10.12 10.13 10.14 10.15 10.16 10.17 10.18 10.19 10.20 10.21 10.22

执行的python脚本

#!/usr/local/python

# coding=UTF-8

import os

file = open( “test.html”, “r” )

fileadd = open(“test.txt”,”r”)

content = file.read()

contentadd = fileadd.read()

file.close()

fileadd.close()

pos = content.find( “” )

if pos != -1:

content = content[:pos] + contentadd + content[pos:]

file = open( “test.html”, “w” )

file.write( content )

file.close()

print “OK”


版权声明:本文为weixin_30667831原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。