Python scripts in HTML

后端 未结 5 1149
醉梦人生
醉梦人生 2020-12-16 21:02

Is it possible to write Python scripts in HTML code similarly as you write PHP between tags?

I\'d like to achieve that m

5条回答
  •  独厮守ぢ
    2020-12-16 21:37

    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

提交回复
热议问题