I'm a novice coder and have a (hopefully) simple question.
Is there a Python equivalent to Ruby's string interpolation?
Ruby example:
name = "Spongebob Squarepants"
puts "Who lives in a Pineapple under the sea? \n#{name}."
Whilst I could succeed using string concatenation in Python, it's seemingly verbose to me coming from Ruby.
Thanks!
Update: The problem was solved using the .format method found in Python 2.6 upwards. This is not the only method however. More are explained eloquently by Sven Marnach.
An example (thanks to EinLama):
"my {0} string: {1}".format("cool", "Hello there!")
Output:
'my cool string: Hello there!"
nameis a local variable lying in the string, and in Python you have to explicitly pass the dictionary of local variables to the string formatter if you want it to use them. – katrielalex Dec 15 '10 at 14:58