html = """<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"></head> <body> <table border='1'> <thead> <tr> <th>Date</th> </tr> </thead> <tr> <th></th> <th>a</th> <th>b</th> <th>c</th> <th>d</th> <th>d</th> </tr> <tr> <td>F </td> <td>%s件</td> <td>%d件</td> <td>%d</td> <td>%s件</td> <td>%d件</td> </tr> </body> </html>""" datas = ['Table ', 14, 14, '一致', 14] f = open('temp.html','w',encoding="utf-8") f.write(html%(tuple(datas))) f.close()
时间: 2023-08-14 18:10:11 浏览: 81
网页期末作业(纯html+css实现).docx
这段代码是用 Python 生成一个包含数据的 HTML 表格,并将其写入文件 temp.html 中。其中,html 变量是 HTML 代码模板,datas 变量是一个包含表格数据的列表。代码通过 % 运算符将 datas 列表中的数据填充到 html 模板中,生成最终的 HTML 代码,并将其写入文件中。
阅读全文