printing where? on the console it should work!
ON web response you need to use HTML or CSS to break
{{=variable_returned_by_controller}} <br />
or
def action():
string = (
"Line 1 <br>"
"Line 2 <br>"
)
return string
or even better if you define in a template and use <p>, <br> and etc..
--

