python在html中插入简单的代码并加上时间戳的方法
建议用pycharm,使用比较方便,并且可以直接编辑html文件
import time locatime = time.strftime("%Y-%m-%d" ) report = file('report.html') line = [] for i in report.readlines(): line.append(i) report.close() line.insert(7,'<p>\n <a href="report %s .html" rel="external nofollow" target="_blank">test %s</a>\n</p>\n '%(locatime,localtime)) s = ''.join(line) reportnew = file('report.html', 'w') reportnew.write(s) reportnew.close()
导入time
给本地时间设定一个变量
打开本地文件,赋值
定义一个空列表
循环文件内容,添加入空列表
写入内存并关闭列表
下一步执行列表插入操作找到你要插入的行数,插入内容即可
定义变量,写入所有信息
打开文件,写入信息
关闭文件
网页会生成如下内容
此方法只适合简单的静态网页自动插入,需要知道自己要插入的行,不适合复杂的网页。
相关推荐
九天银河技术 2020-11-11
行万里 2020-10-26
此处省略三千字 2020-10-22
nongfusanquan0 2020-09-23
夜影风个人空间 2020-09-22
adsadadaddadasda 2020-09-08
85251846 2020-09-14
jbossrobbie 2020-08-16
幸福ITman汪文威 2020-08-15
MySQL源氏boy 2020-08-15
MySQLqueen 2020-08-15
solarspot 2020-07-28
Greatemperor 2020-07-19
冷月醉雪 2020-07-05
manongxiaomei 2020-07-05
javamagicsun 2020-07-04
june0 2020-07-04
yogoma 2020-06-25