python自动生成html网页文件,可以用在自动化批量导出或生成html文件的地方。大大减轻了工作量。
本文用的方法是webbrowser,具体代码如下:
# coding:utf-8 import webbrowser # 命名生成的html SC_HTML = "xyx.html" # 打开文件,准备写入 f = open(SC_HTML, 'w') # 准备相关变量 str1 = 'Hello:' str2 = '--Xiuyixia.com--' # 写入HTML界面中 message = """ <html> <head></head> <body> <p>%s</p> <p>%s</p> </body> </html> """ % (str1, str2) # 写入文件 f.write(message) # 关闭文件 f.close() # 运行完自动在网页中显示 webbrowser.open(SC_HTML, new=1)
运行结果: