Is it possible to write Python
scripts in HTML code similarly as you write PHP between tags?
I\'d like to achieve that m
Well, this might be overkill, but you can install a localhost xampp server. Then, just put the right comments at the top of the file to direct xampp to the interpreter, and you can print out html or regular words right from the language itself. For example, a Python script like this
#!/Python34/python
print "Content-type: text/html"
print
print "Hello World"
Would give a webpage saying Hello World