vote up 0 vote down star

Anyone know how to format the length of a string with Mako?

The equivalent of print "%20s%10s" % ("string 1", "string 2")?

flag

75% accept rate

1 Answer

vote up 2 vote down check

you can use python's string formatting fairly easily in mako

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

giving:

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

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.