我有一个标准的HTML布局,它将在Zope Framework中呈现太多次,效率是一个问题。使用Python的内置模板
是否可以TEMPLATE =
"""
<doctype html>
<meta charset="utf-8">
<style type="text/css">
<div id="header"> $header </div>
<div id="footer"> $footer </div>
<div id="body"> $content </div>
"""
现在执行from string import Template
和Python文档中解释的常用模板
http://docs.python.org/2/library/string.html#template-strings
任何人都可以提出一个更有效的记忆方式吗?我甚至想避免为此目的打开文件,因为例如在5分钟内将完成1000次。
PS:我在这里看到了一个很好的资源https://wiki.python.org/moin/Templating ......但我正在寻找一种记忆效率高的方式。