如何使用.format()打印字符串,并在替换的字符串周围打印文字大括号

时间:2011-11-30 23:56:16

标签: python string formatting string-formatting curly-brackets

  

可能重复:
  How can I print a literal “{}” characters in python string and also use .format on it?

基本上,我想使用.format(),如下所示:

my_string = '{{0}:{1}}'.format('hello', 'bonjour')

并且匹配:

my_string = '{hello:bonjour}' #this is a string with literal curly brackets

然而,第一段代码给了我一个错误。

大括号很重要,因为我使用Python通过基于文本的命令与一个软件进行通信。我无法控制fosoftware所期望的格式,因此我最终整理出所有格式是至关重要的。它在字符串周围使用大括号来确保字符串中的空格被解释为单个字符串,而不是多个参数 - 就像通常使用文件路径中的引号一样。例如。

我目前正在使用旧方法:

my_string = '{%s:%s}' % ('hello', 'bonjour')

这当然有效,但.format()似乎更容易阅读,当我在一个字符串中发送包含五个或更多变量的命令时,可读性就成为一个重要问题。

谢谢!

1 个答案:

答案 0 :(得分:25)

这是新风格:

>>> '{{{0}:{1}}}'.format('hello', 'bonjour')
'{hello:bonjour}'

但我认为逃避有点难以阅读,所以我更愿意切换回较旧的风格以避免逃避:

>>> '{%s:%s}' % ('hello', 'bonjour')
'{hello:bonjour}'