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显示
生成文档后
test.html
(通常位于C:\xampp\htdocs\test.html
或安装xampp的位置),只需尝试使用地址http://localhost/test.html访问它