使用mako格式化

时间:2009-06-22 23:51:31

标签: python template-engine mako

任何人都知道如何用Mako格式化字符串的长度?

相当于打印“%20s%10s”%(“字符串1”,“字符串2”)

1 个答案:

答案 0 :(得分:7)

你可以在mako中轻松使用python的字符串格式

${"%20s%10s" % ("string 1", "string 2")}

,并提供:

>>> from mako.template import Template
>>> Template('${"%20s%10s" % ("string 1", "string 2")}').render()
'            string 1  string 2'