Ruby example:
name = \"Spongebob Squarepants\" puts \"Who lives in a Pineapple under the sea? \\n#{name}.\"
The successful Python string co
String interpolation is going to be included with Python 3.6 as specified in PEP 498. You will be able to do this:
name = 'Spongebob Squarepants' print(f'Who lives in a Pineapple under the sea? \n{name}')
Note that I hate Spongebob, so writing this was slightly painful. :)