Ruby example:
name = \"Spongebob Squarepants\" puts \"Who lives in a Pineapple under the sea? \\n#{name}.\"
The successful Python string co
Since Python 2.6.X you might want to use:
"my {0} string: {1}".format("cool", "Hello there!")