在python中更改字符串格式分隔符

时间:2013-05-08 05:53:37

标签: python string templates

我想模拟一些配置文件,但它们与python不兼容 "this is a {template}".format(template='string')格式化

例如。花括号是配置的一部分(nginx配置)。

您可以将分隔符更改为其他内容吗?

例如,'this is a [template]'.format(template='string')

1 个答案:

答案 0 :(得分:4)

解决方案是使用string.Template,并记住要逃避所有$ http://docs.python.org/2/library/string.html#template-strings