xampp 上的 python 如何服务 html 页面

问题描述 投票:0回答:1

xampp 运行一个写入 html 文件的 python 脚本。我如何让 xampp 从 python 提供 html 服务。

name = "david"
age = 44
square = age**0.5
HTML=f"""
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Download</title>
</head>
<body>
    {name} age is {age} but he is square so age is{square}
</body>
</html>
"""
with open("test.html","w") as new_file:
    new_file.write(HTML)

这写了test.html我如何要求xampp显示

python apache xampp
1个回答
0
投票

生成文档后

test.html
(通常位于
C:\xampp\htdocs\test.html
或安装xampp的位置),只需尝试使用地址http://localhost/test.html

访问它
© www.soinside.com 2019 - 2024. All rights reserved.