Python scripts in HTML

后端 未结 5 1153
醉梦人生
醉梦人生 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:39

    You are mixing up client-side and server-side execution of code.

    Browsers support only Javascript.

    Any application-server or Python-based webframework support template language where you can mix HTML and Python in some way or the other.

提交回复
热议问题