當前位置:首頁 » 編程語言 » pythontext轉html

pythontext轉html

發布時間: 2025-08-15 14:25:58

『壹』 怎樣用python腳本生成一個html格式的測試報告

比如很簡單的,可以這樣:
# -*- coding:utf-8 -*-
import os,sys

html = open('index.html', 'w')
html.write("""
<html>
<head>
<title>Test</title>
<style>img{float:left;margin:5px;}</style>
</head>
<body>
""")

files = os.listdir('.')

# 首先處理文本
for f in files:
if f.lower().endswith('.txt'):
fp = open(f)
content = fp.read()
fp.close()
html.write("<p>%s</p>" % content)

# 然後處理圖片
for f in files:
if f.lower().endswith('.jpg') or f.lower().endswith('.png'):
html.write("<img src='%s' />" % f)

html.write('</body></html>')
html.close()

把這個python代碼放在有圖片和txt文本的目錄里,運行就可以了。如果不是jpg,修改增加png,gif就行了。

熱點內容
eclipse編譯的class 發布:2025-08-15 16:29:21 瀏覽:820
ftp後如何看伺服器上的文件 發布:2025-08-15 16:23:56 瀏覽:979
紅旗h5旗悅韻配置哪些功能 發布:2025-08-15 16:12:37 瀏覽:205
怎麼會編程 發布:2025-08-15 16:12:32 瀏覽:457
一直都用安卓想換蘋果要注意什麼 發布:2025-08-15 16:01:11 瀏覽:217
微信小程序開發存儲數據 發布:2025-08-15 15:40:54 瀏覽:930
24c編程器 發布:2025-08-15 15:39:15 瀏覽:543
安卓手機如何語音喚醒小布 發布:2025-08-15 15:34:19 瀏覽:779
smt編程教程視頻 發布:2025-08-15 15:29:19 瀏覽:633
android幻燈片 發布:2025-08-15 15:29:09 瀏覽:414