I am trying to follow this tutorial, in which he executes python scripts on server side, and generates HTML code using just print, here is my code:
print 'Content-Type: text/HTML';
print;
print '<h1>Hello World</h1>';
But when I go to http://localhost:5500/mysite/tests/helloworld.py it literally just shows the source code, not like the tutorial.
In the tutorial he uses XAMPP, but I am using WAMPP.
What should I do?