我希望输出为
我正在使用'%s'打印出来:你好!
我的代码:
print "I'm using %s to print this out: %s" % "hello!"
这会返回错误。
答案 0 :(得分:6)
在文字之前加上第二个%
:
print "I'm using %%s to print this out: %s" % "hello!"
这不是特定于Python的解决方案:C' printf
和其他类似物(例如shell printf
)以相同的方式工作。