xxxxxxxxxx
Adding python to HTML is now possible.
If you want to add python in html,
Put this code given below inside your head tag after meta tag,
Code:
<link rel="stylesheet" href="https://pyscript.net/alpha/pyscript.css" />
<script defer src="https://pyscript.net/alpha/pyscript.js"></script>
The Tag to use:
<pyscript>
your code
</pyscript>
xxxxxxxxxx
<-- We can use python inside the HTML file -->
<py-script>print("Hi")</py-script>
<-- To import python file into html -->
<py-script src="./script.py"></py-script>