當前位置:成語大全網 - 書法字典 - 如何用python腳本生成html格式的測試報告

如何用python腳本生成html格式的測試報告

比如,很簡單,可以是這樣的:

# -*-編碼:utf-8 -*-

導入操作系統、系統

html = open('index.html ',' w ')

html.write(" "

& lthtml & gt

& lthead & gt

& lttitle & gt測試& lt/title & gt;

& ltstyle & gtimg { float:left;保證金:5px} & lt/style & gt;

& lt/head & gt;

& ltbody & gt

""")

files = os.listdir(' . ')

#首先處理文本

對於文件中的f:

if f.lower()。endswith('。txt’):

fp =打開(f)

content = fp.read()

fp.close()

html . write(" & lt;p & gt% s & lt/p >;%含量)

#然後處理圖片

對於文件中的f:

if f.lower()。endswith('。jpg ')或f.lower()。endswith('。png’):

html . write(" & lt;img src='%s' />% f)

html . write(' & lt;/body & gt;& lt/html & gt;')

html.close()

將這段python代碼放在壹個有圖片和txt文本的目錄中,然後運行它。如果不是jpg,修改添加png和gif就可以了。