如何在包含'%s'的字符串中打印'%'?

时间:2016-02-11 14:39:16

标签: python python-2.7

我希望输出为

  

我正在使用'%s'打印出来:你好!

我的代码:

print "I'm using %s to print this out: %s" % "hello!"

这会返回错误。

1 个答案:

答案 0 :(得分:6)

在文字之前加上第二个%

print "I'm using %%s to print this out: %s" % "hello!"

这不是特定于Python的解决方案:C' printf和其他类似物(例如shell printf)以相同的方式工作。