我想使用Template
从列表开始的字符串类。我开始于:
from string import Template temp = Template('-* $item - \n') items = ["alpha", "beta", "gama"] subs = ''.join([temp.substitute(item) for item in items])
这会失败,因为它需要字典而不是列表。
结果应该是:
-* alpha - -* beta - -* gama -
一些限制:
我知道可以使用它来完成,append
但我想要传递模板的灵活性,其中一些比示例中的更复杂
应该适用于 python2 和 3
理想情况下会更像 jinja2 或 django 模板渲染,但不幸的是我无法添加第三方包,此外我只需要变量和列表替换。
慕妹3146593
Qyouu
相关分类