python 生成HTML文件

今天做个需求需要动态生成HTML文件,想到最近正在学习python开发,就用python脚本实现了,代码如下。

# coding:utf-8

# 设置生成文件的文件名
# 设置编码 encoding="utf-8" ,不然可能会出现乱码的情况
file_name = "test.html"
# 打开文件,准备写入
f = open(file_name, 'w', encoding="utf-8")

title = '我是标题'
content = '我是内容'
msg = """


  %s
  


  

%s

""" % (title, content) # 写入文件 f.write(msg) # 关闭文件 f.close()

参考:https://blog.csdn.net/reallocing1/article/details/51694967

你可能感兴趣的:(Python)