This is probably a very simple question for some, but it has me stumped. Can you use variables within python\'s triple-quotes?
In the following example, how do use
Also note that you don't need the intermediate variable:
name = "Alain" print """ Hello %s """ % (name)