Okay, so what I want to do is embed some Python code into an HTML webpage. Can someone tell me how to do this?
You are here
[solved]Embedding Python in HTML
on what you are trying to make happen with it.
If you are trying to use it as a dynamic client-side language like Javascript, a Java applet or Flash object, creating in page animations or handling events, then I am pretty sure you are out of luck.
If you are trying to use it as a server-side templating language like PHP, ASP etc. then you can technically do it. Python being white-space sensitive does make things difficult, thus there are better and easier solutions for the task (like PHP).
If you are still intent on trying it, then here is a decent link to get you started.
Okay, thanks for the response!