我想模拟一些配置文件,但它们与python不兼容
"this is a {template}".format(template='string')
格式化
例如。花括号是配置的一部分(nginx配置)。
您可以将分隔符更改为其他内容吗?
例如,'this is a [template]'.format(template='string')
答案 0 :(得分:4)
解决方案是使用string.Template
,并记住要逃避所有$
http://docs.python.org/2/library/string.html#template-strings