脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python在html中插入简单的代码并加上时间戳的方法

python在html中插入简单的代码并加上时间戳的方法

2021-04-08 00:34orange_wrj Python

今天小编就为大家分享一篇python在html中插入简单的代码并加上时间戳的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

建议用pycharm,使用比较方便,并且可以直接编辑html文件

?
1
2
3
4
5
6
7
8
9
10
11
12
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

给本地时间设定一个变量

打开本地文件,赋值

定义一个空列表

循环文件内容,添加入空列表

写入内存并关闭列表

下一步执行列表插入操作找到你要插入的行数,插入内容即可

定义变量,写入所有信息

打开文件,写入信息

关闭文件

网页会生成如下内容

python在html中插入简单的代码并加上时间戳的方法

此方法只适合简单的静态网页自动插入,需要知道自己要插入的行,不适合复杂的网页。

以上这篇python在html中插入简单的代码并加上时间戳的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/orange_wrj/article/details/63686752

延伸 · 阅读

精彩推荐