だから私は次のものを持っています:
myString = "This is %s string. It has %s replacements."
myParams = [ "some", "two" ]
# This is a function which works (and has to work) just like that
myFunction(myString, myParams)
デバッグするときは、次のようにします。
print("Debug: myString = " + myString)
print("Debug: myParams = " + myParams)
しかし、次のように、すべてを1つの印刷で直接取得したいと思います。
"Debug: This is some string. It has two replacements."
それはどういうわけか可能ですか?何かのようなもの
print("Debug: myString = " + (myString % myParams))
?