Can Python be embedded in HTML like PHP and JSP?

前端 未结 5 1795
无人及你
无人及你 2020-12-14 07:47

Is there a way of writing Python embedded in HTML like I do with PHP or JSP?

5条回答
  •  长情又很酷
    2020-12-14 08:27

    There is... But you're highly suggested to use a templating engine, or some other means of separating the presentation from the business layer.

    There are some available that use python as the templating language, but it's nasty because python is sensitive to whitespace, so special syntax hacks have to be added.

提交回复
热议问题