如何将HTML与Python结合?

当我运行HTML页面时,必须在单击按钮后调用我的PYTHON程序。

<html>
    <head>
        <script type="text/javascript" language = "javascript">
            function clicked()
            {
                // call python program
            }
        </script>
    </head>
    <body>
        <input type="button" onclick = "clicked()" id="b1">
    </body>
</html>

Python程序:

print("Hii")
回答如下:

您可能想将请求发送到由Python实现的端点。

如何将HTML与Python结合?

当我运行HTML页面时,必须在单击按钮后调用我的PYTHON程序。

<html>
    <head>
        <script type="text/javascript" language = "javascript">
            function clicked()
            {
                // call python program
            }
        </script>
    </head>
    <body>
        <input type="button" onclick = "clicked()" id="b1">
    </body>
</html>

Python程序:

print("Hii")
回答如下:

您可能想将请求发送到由Python实现的端点。